diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-10 21:19:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-10 21:19:00 +0000 |
commit | 30ac0c02855e3e9f6f94e3b3da0a895f77e4479b (patch) | |
tree | f5925b206a5361e0dd18b967a8e41ddfcd29a2f5 | |
parent | 8240c66cb2a1acf60ff08a2bcde6bca652c9194d (diff) |
Force overwriting the file if it already exists.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6080 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 39dca2ca07..b8b6f4c56f 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -292,7 +292,7 @@ if ($BuildError eq "") { } # Compress the test output - system "gzip $Prefix-ProgramTest.txt"; + system "gzip -f $Prefix-ProgramTest.txt"; } my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","",""); |