Skip to content

Commit 7cbfbe4

Browse files
lightsingCopilot
andauthored
fix: script error (#228)
* fix script error * apply review Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
1 parent 0957e6e commit 7cbfbe4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $(SRS_PARAMS_DIR)/%.srs:
3030
fi
3131

3232
download-release:
33-
sh download-release.sh
33+
bash download-release.sh
3434

3535
upload-release:
3636
@cargo run --bin scroll-zkvm-upload-axiom

download-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ WARN_PREFIX="${YELLOW_BOLD}[!]${NC}"
2020

2121
# select release version
2222
GUEST_VERSION="${GUEST_VERSION:-}"
23-
if [ -n "$1" ]; then
23+
if [ "$#" -gt 0 ]; then
2424
GUEST_VERSION="$1"
2525
fi
2626
if [ -z "$GUEST_VERSION" ]; then

0 commit comments

Comments
 (0)