diff options
author | EuAndreh <eu@euandre.org> | 2020-12-10 16:01:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-10 16:01:25 -0300 |
commit | 832a6fb7974ea86f0559a871e8048ff943ac5189 (patch) | |
tree | c4669d59f8fbbf867898e67d577bd70157fbb175 | |
parent | ci-build.sh: Get from environment (diff) | |
download | server-832a6fb7974ea86f0559a871e8048ff943ac5189.tar.gz server-832a6fb7974ea86f0559a871e8048ff943ac5189.tar.xz |
ci-build.sh: Use double quotes for
-rwxr-xr-x | scripts/ci-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index d226332..f9602a1 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -2,7 +2,7 @@ set -Eeuo pipefail set -x -PREFIX='$LOGS_PREFIX/vps' +PREFIX="$LOGS_PREFIX/vps" mkdir -p "$PREFIX" read -r _ SHA _ # oldrev newrev refname FILENAME="$(date -Is)-$SHA.log" |