blob: dcf54ea3a3b170868f68f57668f167a637ab764a [file] [log] [blame]
Alex Brainman7a4d7442012-02-20 12:17:27 +11001:: Copyright 2012 The Go Authors. All rights reserved.
2:: Use of this source code is governed by a BSD-style
3:: license that can be found in the LICENSE file.
4@echo off
5
6setlocal
7
8set GOBUILDFAIL=0
9
10go tool dist env -wp >env.bat
11if errorlevel 1 goto fail
12call env.bat
13del env.bat
14echo.
15
16if exist %GOTOOLDIR%\dist.exe goto distok
17echo cannot find %GOTOOLDIR%\dist; nothing to clean
18goto fail
19:distok
20
21"%GOBIN%\go" clean -i std
22%GOTOOLDIR%\dist clean
23
24goto end
25
26:fail
27set GOBUILDFAIL=1
28
29:end
30if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%