mirror of
https://github.com/golang/go
synced 2024-11-19 13:34:45 -07:00
f34e673079
LGTM=adg R=adg, dave CC=golang-codereviews https://golang.org/cl/136830043
14 lines
237 B
Perl
Executable File
14 lines
237 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
|
|
if ($ENV{GOOS} eq "nacl") {
|
|
delete $ENV{GOROOT_FINAL};
|
|
exec("./nacltest.bash", @ARGV);
|
|
die "Failed to run nacltest.bash: $!\n";
|
|
}
|
|
|
|
exec("./all.bash", @ARGV);
|
|
die "Failed to run all.bash: $!\n";
|
|
|