blob: 3e7b1a1b0c25b0fef1aa26e04ec1e60a9ec4f5c1 [file] [log] [blame] [edit]
:: Copyright 2012 The Go Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style
:: license that can be found in the LICENSE file.
@echo off
if exist ..\bin\go.exe goto ok
echo Must run run.bat from Go src directory after installing cmd/go.
goto fail
:ok
setlocal
set GOENV=off
..\bin\go tool dist env > env.bat || goto fail
call .\env.bat
del env.bat
set GOPATH=c:\nonexist-gopath
..\bin\go tool dist test --rebuild %* || goto fail
goto :eof
:fail
exit /b 1