tests: fixup arg handling for update-all-references

This script does not take any args, so $1 being empty is expected.
This commit is contained in:
Georg Brandl 2017-11-18 16:11:55 +01:00
parent 3d26c7bb7f
commit 76324851b5
1 changed files with 1 additions and 1 deletions

View File

@ -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