aboutsummaryrefslogtreecommitdiff
path: root/aux/ci/ci-build.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-23 15:40:46 -0300
committerEuAndreh <eu@euandre.org>2021-02-23 15:40:46 -0300
commit391e55a486ffac0c8adc0a9272e7dade41dab13d (patch)
tree21eccc3fedbf17650a87a08eb3fb2ac948e8ad5b /aux/ci/ci-build.sh
parentaux/guix/manifest.scm: Add remembering-latest, use fallible-latest over fallible (diff)
downloadremembering-391e55a486ffac0c8adc0a9272e7dade41dab13d.tar.gz
remembering-391e55a486ffac0c8adc0a9272e7dade41dab13d.tar.xz
aux/ci/ci-build.sh: Capture stderr properly
Diffstat (limited to '')
-rwxr-xr-xaux/ci/ci-build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/ci/ci-build.sh b/aux/ci/ci-build.sh
index 2aa30d6..0679cbd 100755
--- a/aux/ci/ci-build.sh
+++ b/aux/ci/ci-build.sh
@@ -53,4 +53,4 @@ EOF
$RUNNER 'make clean check public'
rsync -avzzP public/ "/srv/http/$PACKAGE/" --delete
-} | tee "$LOGFILE" 2>&1
+} 2>&1 | tee "$LOGFILE"