1
0
mirror of https://github.com/golang/go synced 2024-11-19 11:24:51 -07:00
go/dashboard/env/linux-x86-nacl/build-command.pl

14 lines
237 B
Perl
Raw Normal View History

#!/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";