We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69e4307 + 0e42f95 commit 09d6a58Copy full SHA for 09d6a58
1 file changed
install-go.pl
@@ -232,13 +232,13 @@ sub install_go
232
233
if ($EXT eq 'zip')
234
{
235
- exe(qw(curl -s -o x.zip), $url);
+ exe(qw(curl -L -s -o x.zip), $url);
236
exe(qw(unzip x.zip go/bin/* go/pkg/* go/src/*));
237
unlink 'x.zip';
238
}
239
else
240
241
- exe("curl -s \Q$url\E | tar zxf - go/bin go/pkg go/src");
+ exe("curl -L -s \Q$url\E | tar zxf - go/bin go/pkg go/src");
242
243
244
my $goroot_env;
0 commit comments