We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e481a8b commit c3bfc69Copy full SHA for c3bfc69
manual_fetch.pl
@@ -18,7 +18,7 @@ sub http_fetch {
18
my $url = shift;
19
20
# See if we should use wget or curl
21
- if(0 && grep {-x "$_/curl"} split /:/, $ENV{'PATH'}) {
+ if(grep {-x "$_/curl"} split /:/, $ENV{'PATH'}) {
22
return qx{curl -L -s '$url'};
23
} elsif(grep {-x "$_/wget"} split /:/, $ENV{'PATH'}) {
24
# do not check the cert due to a bug in wget:
0 commit comments