Allow clean.bat to be run from anywhere
authorAndrew Dunstan
Thu, 20 Jan 2022 15:13:18 +0000 (10:13 -0500)
committerAndrew Dunstan
Thu, 20 Jan 2022 15:20:51 +0000 (10:20 -0500)
This was omitted from c3879a7b4c which modified the other msvc .bat
files.

Per request from Juan José Santamaría Flecha

Discussion: https://postgr.es/m/CAC+AXB0_fxYGbQoaYjCA8um7TTbOVP4L9aXnVmHwK8WzaT4gdA@mail.gmail.com

Backpatch to all live branches.

src/tools/msvc/clean.bat

index 672bb2d65031f9f2cc3a36ea453f4c5b9a393dbb..5cb7bf8daf52aafcf922b802e7cd3f2629c18f53 100755 (executable)
@@ -4,8 +4,9 @@ REM src/tools/msvc/clean.bat
 set DIST=0
 if "%1"=="dist" set DIST=1
 
-set D=%CD%
-if exist ..\msvc if exist ..\..\..\src cd ..\..\..
+setlocal
+
+cd "%~dp0\..\..\.."
 
 if exist debug rd /s /q debug
 if exist release rd /s /q release
@@ -131,7 +132,7 @@ REM Clean up datafiles built with contrib
 REM cd contrib
 REM for /r %%f in (*.sql) do if exist %%f.in del %%f
 
-cd %D%
+cd "%~dp0"
 
 REM Clean up ecpg regression test files
 msbuild ecpg_regression.proj /NoLogo /v:q %MSBFLAGS% /t:clean