aboutsummaryrefslogtreecommitdiff
path: root/_tils
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-11-13 06:08:58 -0300
committerEuAndreh <eu@euandre.org>2020-11-13 06:10:34 -0300
commit5377c8c2cc8144beeb137a1ffa6ed2d4dddcf1a6 (patch)
treebd0fd049e9ea5d090d4d1d79307a3eea1aaa69e4 /_tils
parentAdd TIL on CI with Nix and Bash (diff)
downloadeuandre.org-5377c8c2cc8144beeb137a1ffa6ed2d4dddcf1a6.tar.gz
euandre.org-5377c8c2cc8144beeb137a1ffa6ed2d4dddcf1a6.tar.xz
Nix and Bash TIL: Fix LOGS_PREFIX -> LOGS_DIR
Diffstat (limited to '')
-rw-r--r--_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md2
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}")