diff options
author | EuAndreh <eu@euandre.org> | 2021-02-23 15:33:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-23 15:33:28 -0300 |
commit | 9cc82b2d9b7fa73328877f7a889ea140722bfd89 (patch) | |
tree | 4b997f1f5b9582a79c6dd4b54dae7f023451c92d /aux | |
parent | default.nix: Use PREFIX=$(out) as makeFlags (diff) | |
download | package-repository-9cc82b2d9b7fa73328877f7a889ea140722bfd89.tar.gz package-repository-9cc82b2d9b7fa73328877f7a889ea140722bfd89.tar.xz |
aux/ci/ci-build.sh: Capture stderr properly
Diffstat (limited to 'aux')
-rwxr-xr-x | aux/ci/ci-build.sh | 2 |
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" |