Skip to content

Commit

Permalink
tests: fixup arg handling for update-all-references
Browse files Browse the repository at this point in the history
This script does not take any args, so $1 being empty is expected.
  • Loading branch information
birkenfeld committed Nov 18, 2017
1 parent 3d26c7b commit 7632485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ui/update-all-references.sh
Expand Up @@ -18,7 +18,7 @@
#
# See all `update-references.sh`, if you just want to update a single test.

if [[ "$1" == "--help" || "$1" == "-h" || "$1" == "" ]]; then
if [[ "$1" == "--help" || "$1" == "-h" ]]; then
echo "usage: $0"
fi

Expand Down

0 comments on commit 7632485

Please sign in to comment.