Revert "init.cmd - fix for Jenkins incorrect handle of pushd/popd"

This reverts commit b8b4a33f9f.
This commit is contained in:
dzaitsev
2025-05-07 15:58:48 +03:00
parent b8b4a33f9f
commit 41b96e2ce5
+2 -8
View File
@@ -1,18 +1,12 @@
echo Make dirs, copy init dlls
pushd %~dp0..
:: Change to the directory where init.cmd is located
cd /d %~dp0..
:: Create directories if they do not exist
if exist dist-dlls rmdir dist-dlls /s /q
mkdir dist-dlls
if exist dist-azaion rmdir dist-azaion /s /q
mkdir dist-azaion
echo Copying shared libs
:: Use robocopy to copy files
robocopy "C:\\share" "dist-dlls" "*"
:: Return to the previous directory
cd /d %OLDPWD%
popd