Skip to content

Commit c3bfc69

Browse files
committed
[manual_fetch] removed debug code
1 parent e481a8b commit c3bfc69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manual_fetch.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ sub http_fetch {
1818
my $url = shift;
1919

2020
# See if we should use wget or curl
21-
if(0 && grep {-x "$_/curl"} split /:/, $ENV{'PATH'}) {
21+
if(grep {-x "$_/curl"} split /:/, $ENV{'PATH'}) {
2222
return qx{curl -L -s '$url'};
2323
} elsif(grep {-x "$_/wget"} split /:/, $ENV{'PATH'}) {
2424
# do not check the cert due to a bug in wget:

0 commit comments

Comments
 (0)