Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $(SRS_PARAMS_DIR)/%.srs:
fi

download-release:
sh download-release.sh
bash download-release.sh

upload-release:
@cargo run --bin scroll-zkvm-upload-axiom
Expand Down
2 changes: 1 addition & 1 deletion download-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ WARN_PREFIX="${YELLOW_BOLD}[!]${NC}"

# select release version
GUEST_VERSION="${GUEST_VERSION:-}"
if [ -n "$1" ]; then
if [ $# -gt 0 ]; then
GUEST_VERSION="$1"
fi
if [ -z "$GUEST_VERSION" ]; then
Expand Down
Loading