File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -42,16 +42,17 @@ cleanup () {
4242trap cleanup INT TERM EXIT
4343
4444NGHTTP3_REF="v$NEW_VERSION"
45- NGHTTP3_ZIP ="nghttp3-$NEW_VERSION"
45+ ARCHIVE_BASENAME ="nghttp3-${ NEW_VERSION} "
4646
4747cd "$WORKSPACE"
4848
4949echo "Fetching nghttp3 source archive..."
50- curl -sL -o "$NGHTTP3_ZIP.zip" "https://github.com/ngtcp2/nghttp3/archive/refs/tags/$NGHTTP3_REF.zip"
51- log_and_verify_sha256sum "nghttp3" "$NGHTTP3_ZIP.zip"
52- unzip "$NGHTTP3_ZIP.zip"
53- rm "$NGHTTP3_ZIP.zip"
54- mv "$NGHTTP3_ZIP" nghttp3
50+ curl -sL -o "$ARCHIVE_BASENAME.tar.xz" "https://github.com/ngtcp2/nghttp3/releases/download/${NGHTTP3_REF}/${ARCHIVE_BASENAME}.tar.xz"
51+ SHA256="$(curl -sL "https://github.com/ngtcp2/nghttp3/releases/download/${NGHTTP3_REF}/checksums.txt" | grep 'tar.xz$')"
52+ log_and_verify_sha256sum "nghttp3" "$ARCHIVE_BASENAME.tar.xz" "$SHA256"
53+ tar -xJf "$ARCHIVE_BASENAME.tar.xz"
54+ rm "$ARCHIVE_BASENAME.tar.xz"
55+ mv "$ARCHIVE_BASENAME" nghttp3
5556
5657cd nghttp3
5758
You can’t perform that action at this time.
0 commit comments