[go: up one dir, main page]

blob: 2e03806305b433295f7c7222c6afc2eb03cdcdf6 [file] [log] [blame]
Dmitri Shuralyovee379d22020-06-04 00:35:09 -04001:: 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
5@echo off
6
7setlocal
8
qmuntale9eb88a2025-02-11 09:17:08 +01009go tool dist env -w -p >env.bat || exit /b 1
Yasuhiro Matsumotoc4c9c802022-05-13 00:22:11 +090010call .\env.bat
Dmitri Shuralyovee379d22020-06-04 00:35:09 -040011del env.bat
12echo.
13
qmuntale9eb88a2025-02-11 09:17:08 +010014if not exist %GOTOOLDIR%\dist.exe (
15 echo cannot find %GOTOOLDIR%\dist.exe; nothing to clean
16 exit /b 1
17)
Dmitri Shuralyovee379d22020-06-04 00:35:09 -040018
19"%GOBIN%\go" clean -i std
20"%GOBIN%\go" tool dist clean
21"%GOBIN%\go" clean -i cmd