From f6b7471f4023bc8cb072e659855d91741b4485c6 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Mon, 12 Apr 2010 22:57:48 +0200 Subject: removed obsolete var in gitpull() function no need to create a var - lets just return the status var itself. --- tests/testcurl.pl | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'tests/testcurl.pl') 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... -- cgit v1.2.3