Loading tests/testcurl.pl +2 −5 Original line number Original line Diff line number Diff line Loading @@ -378,17 +378,14 @@ chdir $CURLDIR; sub gitpull() { sub gitpull() { # update quietly to the latest git # update quietly to the latest git if($nogitpull) { if($nogitpull) { logit "Skipping git pull (--nogitpull)"; logit "skipping git pull (--nogitpull)"; return 1; return 1; } } else { else { logit "run git pull"; logit "run git pull"; system("git pull 2>&1"); system("git pull 2>&1"); return $?; } } my $stat=$?; return $stat; } } # Do the git thing, or not... # Do the git thing, or not... Loading Loading
tests/testcurl.pl +2 −5 Original line number Original line Diff line number Diff line Loading @@ -378,17 +378,14 @@ chdir $CURLDIR; sub gitpull() { sub gitpull() { # update quietly to the latest git # update quietly to the latest git if($nogitpull) { if($nogitpull) { logit "Skipping git pull (--nogitpull)"; logit "skipping git pull (--nogitpull)"; return 1; return 1; } } else { else { logit "run git pull"; logit "run git pull"; system("git pull 2>&1"); system("git pull 2>&1"); return $?; } } my $stat=$?; return $stat; } } # Do the git thing, or not... # Do the git thing, or not... Loading