]> granicus.if.org Git - curl/commitdiff
reversed the actions on the cmp check for detecting if we're re-running
authorDaniel Stenberg <daniel@haxx.se>
Wed, 22 Jan 2003 12:29:19 +0000 (12:29 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 22 Jan 2003 12:29:19 +0000 (12:29 +0000)
a test on the same CVS setup as previous, as they seemed to be wrong.

We're not actually using the result for anything at this point though.

testcurl.sh

index 79d2028f3161e6c353edc96971cc921ae8d9d281..4dca362907581d479022876c558bd1d2e0ca40e4 100755 (executable)
@@ -115,11 +115,11 @@ find . -name Entries -exec cat {} \; > "$newstat"
 if [ -r "$oldstat" ]; then
   # there is a previous cvs stat file to compare with
   if { cmp "$oldstat" "$newstat"; } then
-    echo "testcurl: there has been a change in the CVS"
-  else
     echo "testcurl: this is the same CVS status as before"
     echo "testcurl: ALREADY TESTED THIS SETUP BEFORE"
     #die
+  else
+    echo "testcurl: there has been a change in the CVS"
   fi
 fi