diff options
author | EuAndreh <eu@euandre.org> | 2021-06-19 16:54:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-19 16:54:00 -0300 |
commit | 50f16f2e69929757ff3f1384e1de74a16b733b19 (patch) | |
tree | 0bb0b055fa8e429c07af88232cee771c129d99b8 /aux/ci | |
parent | Makefile: use mkdir+cp over install (diff) | |
download | remembering-50f16f2e69929757ff3f1384e1de74a16b733b19.tar.gz remembering-50f16f2e69929757ff3f1384e1de74a16b733b19.tar.xz |
aux/ci/report.sh: Don't override signatures notes ref
Diffstat (limited to 'aux/ci')
-rwxr-xr-x | aux/ci/report.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/aux/ci/report.sh b/aux/ci/report.sh index 2b40f3e..e71e1ac 100755 --- a/aux/ci/report.sh +++ b/aux/ci/report.sh @@ -12,7 +12,10 @@ mkdir -p public/ci-logs public/ci-data OUT="$(mktemp)" chmod 644 "$OUT" -git fetch origin refs/notes/*:refs/notes/* ||: +git fetch origin refs/notes/ci-data:refs/notes/ci-data ||: & +git fetch origin refs/notes/ci-logs:refs/notes/ci-logs ||: & +git fetch origin refs/notes/commits:refs/notes/commits ||: & +wait for c in $(git notes list | cut -d\ -f2); do DATA="$(git notes --ref=refs/notes/ci-data show "$c")" |