Skip to content
Snippets Groups Projects
Commit a034208a authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

reversed the actions on the cmp check for detecting if we're re-running

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.
parent 5f125158
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment