diff options
author | EuAndreh <eu@euandre.org> | 2020-12-02 13:33:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-02 13:33:28 -0300 |
commit | 16b620524cef9feec857d7bae1c8314bd72736bf (patch) | |
tree | 564ddef06a36cb37d93e792066612aea07fb8305 | |
parent | Rename LICENSE -> COPYING (diff) | |
download | server-16b620524cef9feec857d7bae1c8314bd72736bf.tar.gz server-16b620524cef9feec857d7bae1c8314bd72736bf.tar.xz |
ci-build.sh: Append the note instead of force replacing it.
-rwxr-xr-x | scripts/ci-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index 277fb69..2da3a63 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -24,7 +24,7 @@ EOF ) git notes --ref=refs/notes/ci-data add -f -m "$STATUS $FILENAME" git notes --ref=refs/notes/ci-logs add -f -F "$LOGFILE" - git notes add -f -m "$NOTE" + git notes append -m "$NOTE" printf "\n\n>>> CI logs added as Git note." } trap finish EXIT |