Skip to content

Commit 945bb87

Browse files
authored
Merge pull request #2331 from github/igfoo/bash
Fix bash syntax
2 parents 81b8143 + b0944a2 commit 945bb87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/script/update-node-modules.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -eu
33

4-
if [ "$1" != "update" && "$1" != "check-only" ]; then
4+
if [ "$1" != "update" ] && [ "$1" != "check-only" ]; then
55
>&2 echo "Failed: Invalid argument. Must be 'update' or 'check-only'"
66
exit 1
77
fi

0 commit comments

Comments
 (0)