diff options
-rwxr-xr-x | utils/NightlyTest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 5be93b30bd..8137d3ea52 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -340,8 +340,8 @@ $CVSOPT = ""; $CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/; # Use compression if going over ssh. if (!$NOCHECKOUT) { if ( $VERBOSE ) { print "CHECKOUT STAGE\n"; } - system "(time -p ($NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm; cd llvm/projects ; " . - "$NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm-test ) ) > $CVSLog 2>&1"; + system "( time -p $NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm; cd llvm/projects ; " . + "$NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm-test ) > $CVSLog 2>&1"; ChangeDir( $BuildDir , "CVS Checkout directory") ; } |