From 45aa58056cf9fe1e2e79fb084f01de15af7027ec Mon Sep 17 00:00:00 2001 From: Max Weber Date: Tue, 16 Jun 2020 22:03:47 -0600 Subject: [PATCH] package: generate the manifest even if the last plugin isn't built curl --fail's exit status is only of the final transfer, not any transfer as I had assumed --- build_manifest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_manifest.sh b/build_manifest.sh index 2d820933e..a9b487533 100755 --- a/build_manifest.sh +++ b/build_manifest.sh @@ -54,7 +54,7 @@ for PLUGINFILE in plugins/*; do done curl --fail --retry 5 \ - "${MANIFEST_CHUNK_DOWNLOAD[@]}" + "${MANIFEST_CHUNK_DOWNLOAD[@]}" || true IS_FIRST=true echo "[" > "$MANIFEST"