Commit 3159e0eb authored by Gutflo's avatar Gutflo Committed by GitHub

fix: fix potential error when running without any argument (#11812)

parent 93ca2941
...@@ -3,7 +3,7 @@ set -euo pipefail ...@@ -3,7 +3,7 @@ set -euo pipefail
# Check for the --no-build flag # Check for the --no-build flag
# Generate snapshots # Generate snapshots
if [ "$1" == "--no-build" ]; then if [ "${1:-}" == "--no-build" ]; then
just snapshots-no-build just snapshots-no-build
else else
just snapshots just snapshots
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment