From 5377c8c2cc8144beeb137a1ffa6ed2d4dddcf1a6 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 13 Nov 2020 06:08:58 -0300 Subject: Nix and Bash TIL: Fix LOGS_PREFIX -> LOGS_DIR --- _tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '_tils') 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}") -- cgit v1.2.3