diff options
author | EuAndreh <eu@euandre.org> | 2021-03-06 19:45:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-06 19:45:53 -0300 |
commit | fe3ce7e04c1ea097ebe8eb0f3c357c454f9453a6 (patch) | |
tree | 3c53cc8f247fe91a7c4e46c44ae6c7297a038bfe | |
parent | TODOs.md: Add #question-fe884516-3fde-42ba-b382-2e0068a99a36 (diff) | |
download | server-fe3ce7e04c1ea097ebe8eb0f3c357c454f9453a6.tar.gz server-fe3ce7e04c1ea097ebe8eb0f3c357c454f9453a6.tar.xz |
Suppress rsync stderr from CI logs
-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 1c033fe..12eb677 100755 --- a/aux/ci/ci-build.sh +++ b/aux/ci/ci-build.sh @@ -52,5 +52,5 @@ EOF $RUNNER 'make clean dev-check public' - rsync -avzzP public/ "/srv/http/$PACKAGE/" --delete + rsync -a public/ "/srv/http/$PACKAGE/" --delete } 2>&1 | tee "$LOGFILE" |