This commit is contained in:
Michael H.G. Schmidt 2023-02-01 17:27:09 +01:00
parent b64414088e
commit 3ab6bb6577
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ for %%S in (
finish-boot.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S || exit /b
call %%S || ( cd .. ; exit /b )
echo.
)

View File

@ -25,7 +25,7 @@ for %%S in (
mount-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S || exit /b
call %%S || ( cd .. ; exit /b )
echo.
)
@ -36,7 +36,7 @@ if /I %ARG1% == /R (
)
echo ########## calling [ finish-image.cmd ] ##########
call finish-image.cmd || exit /b
call finish-image.cmd || ( cd .. ; exit /b )
echo.
echo checking for NTLite ...