From 917f201f952019988fd477565223c19352b4bb6a Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Thu, 12 May 2022 10:28:51 +0900 Subject: [PATCH] make.bat: call env.bat with .\env.bat When set NoDefaultCurrentDirectoryInExePath=1, call env.bat does not work. Change-Id: If63b02e236079681bdadadbdebc0b39abce01219 Reviewed-on: https://go-review.googlesource.com/c/go/+/405774 TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov Reviewed-by: Bryan Mills Auto-Submit: Bryan Mills Run-TryBot: Bryan Mills --- src/make.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/make.bat b/src/make.bat index 0ba2dd57c5..8f43470819 100644 --- a/src/make.bat +++ b/src/make.bat @@ -105,7 +105,7 @@ endlocal if errorlevel 1 goto fail .\cmd\dist\dist.exe env -w -p >env.bat if errorlevel 1 goto fail -call env.bat +call .\env.bat del env.bat if x%vflag==x-v echo. -- 2.48.1