Skip to content

Commit

Permalink
Never fail download artefacts (#2767)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailai-Wang authored May 29, 2024
1 parent 9fed492 commit 5972a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/runtime-upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ -z "$2" ]; then
cp -f "$1" "$output_wasm"
else
echo "Download $1 from release tag $2 ..."
gh release download "$2" -p "$1" -O "$output_wasm"
gh release download "$2" -p "$1" -O "$output_wasm" || true
fi

if [ -f "$output_wasm" ] && [ -s "$output_wasm" ]; then
Expand Down

0 comments on commit 5972a29

Please sign in to comment.