Fix the test for an empty string in bin/runner

This commit is contained in:
Florian Apolloner
2012-01-24 09:51:16 +01:00
parent c7167e1c83
commit e1d3955d3c
+1 -1
View File
@@ -29,7 +29,7 @@ shift $((OPTIND-1))
command=$1
if [ "$1" == "" ]; then
if [ -z "$1" ]; then
usage
fi