diff options
Diffstat (limited to '')
-rw-r--r-- | _tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md b/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md index b26a06e..d198845 100644 --- a/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md +++ b/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md @@ -24,7 +24,7 @@ In most of my project I like to keep a `test` attribute which runs the test with set -Eeuo pipefail set -x -LOGS_PREFIX="/data/static/ci-logs/libedn" +LOGS_DIR="/data/static/ci-logs/libedn" mkdir -p "$LOGS_DIR" LOGFILE="${LOGS_DIR}/$(date -Is)-$(git rev-parse master).log" exec &> >(tee -a "${LOGFILE}") |