mirror of
https://github.com/dockur/windows.git
synced 2025-10-27 19:35:49 +00:00
fix: Check ISO exists
This commit is contained in:
parent
ff4bd4da28
commit
1fbe146ead
1 changed files with 5 additions and 5 deletions
|
|
@ -296,11 +296,6 @@ startInstall() {
|
|||
|
||||
[ -z "$MANUAL" ] && MANUAL="N"
|
||||
|
||||
if skipInstall; then
|
||||
BASE=""
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ -f "$STORAGE/$CUSTOM" ]; then
|
||||
|
||||
EXTERNAL="Y"
|
||||
|
|
@ -349,6 +344,11 @@ startInstall() {
|
|||
|
||||
fi
|
||||
|
||||
if skipInstall; then
|
||||
[ ! -f "$STORAGE/$BASE" ] && BASE=""
|
||||
return 1
|
||||
fi
|
||||
|
||||
rm -rf "$TMP"
|
||||
mkdir -p "$TMP"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue