diff options
-rwxr-xr-x | test/Scripts/count | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Scripts/count b/test/Scripts/count index cc0355208b..1c3d7e0953 100755 --- a/test/Scripts/count +++ b/test/Scripts/count @@ -9,7 +9,7 @@ set -e set -u -input_lines=$(wc -l) +input_lines=`wc -l` if [ "$input_lines" -ne "$1" ]; then echo "count: expected $1 lines and got ${input_lines}." exit 1 |