bugfix
This commit is contained in:
parent
10a8ab3bbf
commit
031fd6892a
@ -28,11 +28,6 @@ for %%S in (
|
|||||||
finish-boot.cmd
|
finish-boot.cmd
|
||||||
|
|
||||||
export-image.cmd
|
export-image.cmd
|
||||||
IF %ERRORLEVEL% NEQ 0 (
|
|
||||||
echo ERROR while exporting image
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
mount-image.cmd
|
mount-image.cmd
|
||||||
remove-apps.cmd
|
remove-apps.cmd
|
||||||
remove-packages.cmd
|
remove-packages.cmd
|
||||||
|
@ -29,7 +29,7 @@ set DISK=
|
|||||||
)
|
)
|
||||||
|
|
||||||
diskpart /s %DPARTSCRIPT% 1>nul 2>nul
|
diskpart /s %DPARTSCRIPT% 1>nul 2>nul
|
||||||
if %errorlevel% EQU 0 (
|
if %ERRORLEVEL% EQU 0 (
|
||||||
echo OK using disk %DISK%
|
echo OK using disk %DISK%
|
||||||
GOTO CONT1
|
GOTO CONT1
|
||||||
) else (
|
) else (
|
||||||
@ -75,7 +75,7 @@ rem =====
|
|||||||
)
|
)
|
||||||
|
|
||||||
diskpart /s %DPARTSCRIPT% 1>nul 2>nul
|
diskpart /s %DPARTSCRIPT% 1>nul 2>nul
|
||||||
if %errorlevel% NEQ 0 (
|
if %ERRORLEVEL% NEQ 0 (
|
||||||
echo ERROR: while formatting the disk!
|
echo ERROR: while formatting the disk!
|
||||||
del /F %DPARTSCRIPT% 1>nul 2>nul
|
del /F %DPARTSCRIPT% 1>nul 2>nul
|
||||||
exit /b
|
exit /b
|
||||||
|
Loading…
Reference in New Issue
Block a user