diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-13 15:56:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-13 15:56:31 +0000 |
commit | 64067a04b597a5837df13a34ac6987c41ff2c2d6 (patch) | |
tree | b8a4cbd6984682377f66e660c9b7cbf4a295c3de | |
parent | 38cf0268c0d1c3a8af5237fa357ce1c33a9912d7 (diff) |
output what cvs returned, see if we can make the script bail out when
cvs update fails
-rwxr-xr-x | testcurl.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testcurl.sh b/testcurl.sh index 6ec132f17..3917d5dac 100755 --- a/testcurl.sh +++ b/testcurl.sh @@ -109,6 +109,9 @@ echo "testcurl: update from CVS" # update quietly to the latest CVS cvs -Q up -dP 2>&1 +cvsstat=$? +echo "testcurl: cvs returned: $cvsstat" + # figure out the current collected CVS status newstat="../allcvs.log" oldstat="../oldcvs.log" |