Skip to content

Commit 7c1a2f4

Browse files
yuhuyoyoYu Hu
andauthored
allow empty path (#325)
* create a dummy app just for faster integration test * fix docker-auth script to accept empty path --------- Co-authored-by: Yu Hu <yuhuyoyo@verily.health>
1 parent bf75c9a commit 7c1a2f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

startupscript/butane/gcp/docker-auth.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o nounset
99
set -o pipefail
1010

1111
# Validate required parameter
12-
if [ $# -lt 1 ] || [ -z "${1:-}" ]; then
12+
if [ $# -lt 1 ]; then
1313
echo "Error: path parameter is required" >&2
1414
echo "Usage: $0 <path> [default-regions]" >&2
1515
exit 1

0 commit comments

Comments
 (0)