diff --git a/03_MakeAll.cmd b/03_MakeAll.cmd index 6f071f2..1e8cf7e 100644 --- a/03_MakeAll.cmd +++ b/03_MakeAll.cmd @@ -28,11 +28,6 @@ for %%S in ( finish-boot.cmd export-image.cmd - IF %ERRORLEVEL% NEQ 0 ( - echo ERROR while exporting image - exit /b - ) - mount-image.cmd remove-apps.cmd remove-packages.cmd diff --git a/04_FormatStick.cmd b/04_FormatStick.cmd index 69ba1c0..c9431b7 100644 --- a/04_FormatStick.cmd +++ b/04_FormatStick.cmd @@ -29,7 +29,7 @@ set DISK= ) diskpart /s %DPARTSCRIPT% 1>nul 2>nul - if %errorlevel% EQU 0 ( + if %ERRORLEVEL% EQU 0 ( echo OK using disk %DISK% GOTO CONT1 ) else ( @@ -75,7 +75,7 @@ rem ===== ) diskpart /s %DPARTSCRIPT% 1>nul 2>nul -if %errorlevel% NEQ 0 ( +if %ERRORLEVEL% NEQ 0 ( echo ERROR: while formatting the disk! del /F %DPARTSCRIPT% 1>nul 2>nul exit /b