diff options
| -rwxr-xr-x | llvm/test/Scripts/count | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Scripts/count b/llvm/test/Scripts/count index cc0355208b7..1c3d7e0953b 100755 --- a/llvm/test/Scripts/count +++ b/llvm/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 |

