Skip to content

Commit 687f667

Browse files
authored
ci: fix test condition per devbww (#6669)
1 parent 7e4987e commit 687f667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/cloudbuild/builds/checkers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function sed_edit() {
3232
while [[ $# -gt 0 ]]; do
3333
case "$1" in
3434
-e)
35-
test -z "$2" && return 1
35+
test $# -gt 1 || return 1
3636
expressions+=("-e" "$2")
3737
shift 2
3838
;;

0 commit comments

Comments
 (0)