diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-18 13:36:41 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-18 13:36:41 +0200 |
commit | a4c8532941a3aa613443a9a371f0353dceb66451 (patch) | |
tree | fdad17b3a6997358456d892e39754b9e7d81a62e /validate | |
parent | d94c40561dde695e658169a3098642294f55c7e3 (diff) | |
download | haskell-a4c8532941a3aa613443a9a371f0353dceb66451.tar.gz |
Validate: use `rm -f` instead of `rm`
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -269,7 +269,7 @@ if [ $be_quiet -eq 1 ] && [ -z $VERBOSE ]; then TEST_VERBOSITY="VERBOSE=1" fi -rm testsuite_summary.txt testsuite_summary_stage1.txt +rm -f testsuite_summary.txt testsuite_summary_stage1.txt # Use LOCAL=0, see Note [Running tests in /tmp]. $make -C testsuite/tests $BINDIST \ |