Skip to content

Commit 0c07f3d

Browse files
committed
Fix unbound variable.
1 parent c946cf3 commit 0c07f3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-docker-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ run() {
2323
fi
2424
}
2525

26-
if [ -z "${1}" ]; then
26+
if [ -z "${1:-}" ]; then
2727
for t in Dockerfile.*; do
2828
run "${t##Dockerfile.}"
2929
done

0 commit comments

Comments
 (0)