diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-07-11 21:29:43 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-07-11 21:29:43 -0400 |
commit | 2692c18dcf3bd1c80c4399c812db70a5b80f30ab (patch) | |
tree | c2fd2b26047770d4e80ee1241d836ccdabb471ac | |
parent | 411519fa902a31bf32262cc85db488905ae57021 (diff) |
ci: Tell rsync to preserve symlinks
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rwxr-xr-x | ci/test-job-done.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/test-job-done.sh b/ci/test-job-done.sh index f292512..54e145d 100755 --- a/ci/test-job-done.sh +++ b/ci/test-job-done.sh @@ -149,6 +149,8 @@ BRANCH_LOG=$(echo "$BRANCH"|tr / _).html git_log_html > "$JOBSERVER_OUTPUT_DIR/$BRANCH_LOG" echo "Running rsync" -flock --nonblock .rsync.lock rsync -r --delete $JOBSERVER_OUTPUT_DIR/ testdashboard@evilpiepirate.org:public_html || true +flock --nonblock .rsync.lock rsync -r --links --delete \ + $JOBSERVER_OUTPUT_DIR/ \ + testdashboard@evilpiepirate.org:public_html || true echo "Success" |