Skip to content
代码片段 群组 项目
build.sh 253 字节
更新 更旧
#!/usr/bin/env bash
set -euo pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

Ryan Brandenburg's avatar
Ryan Brandenburg 已提交
# Call "sync" between "chmod" and execution to prevent "text file busy" error in Docker (aufs)
chmod +x "$DIR/run.sh"; sync
"$DIR/run.sh" default-build "$@"