diff options
-rwxr-xr-x | tests/testcurl.pl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index c55dcaeef..171110bf0 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -378,17 +378,14 @@ chdir $CURLDIR; sub gitpull() { # update quietly to the latest git if($nogitpull) { - logit "Skipping git pull (--nogitpull)"; + logit "skipping git pull (--nogitpull)"; return 1; } else { logit "run git pull"; system("git pull 2>&1"); + return $?; } - - my $stat=$?; - - return $stat; } # Do the git thing, or not... |