diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-25 16:38:24 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-25 16:38:24 +0000 |
commit | 3578d7e7ad13a05d648da3c18c475b3a33157dac (patch) | |
tree | 8da6db07e26413cf7e34be0c0d45e40c64fcb2f7 /utils/cvsupdate | |
parent | 9608c81d01d0f0d7f8b4a9dea54d237d1a9d8276 (diff) | |
download | external_llvm-3578d7e7ad13a05d648da3c18c475b3a33157dac.zip external_llvm-3578d7e7ad13a05d648da3c18c475b3a33157dac.tar.gz external_llvm-3578d7e7ad13a05d648da3c18c475b3a33157dac.tar.bz2 |
Do not show errors when moving file. The error is shown the first time anyone
runs `utils/cvsupdate' since there is no `cvs.out' file for mv to move, and it
is reported as such.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/cvsupdate')
-rwxr-xr-x | utils/cvsupdate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/cvsupdate b/utils/cvsupdate index e661266..f09cd2f 100755 --- a/utils/cvsupdate +++ b/utils/cvsupdate @@ -32,7 +32,7 @@ while ( !( $?options_done ) && ($#argv > 0)) end if ($doit == 1) then - /bin/mv -f cvs.out cvs.out.bak + /bin/mv -f cvs.out cvs.out.bak >&/dev/null cvs update -P -d >& cvs.out ## if ($status != 0) then ## echo "ERROR: CVS update failed: " |