Update install.sh

This commit is contained in:
Kroese 2025-04-02 23:25:39 +02:00 committed by GitHub
parent 7d082589a9
commit 50d97d7adb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -203,6 +203,7 @@ detectCustom() {
local dir file base local dir file base
local fname="custom.iso" local fname="custom.iso"
local boot="$STORAGE/windows.boot" local boot="$STORAGE/windows.boot"
local previous="$STORAGE/windows.base"
CUSTOM="" CUSTOM=""
@ -210,9 +211,15 @@ detectCustom() {
[ ! -d "$dir" ] && dir=$(find "$STORAGE" -maxdepth 1 -type d -iname "$fname" | head -n 1) [ ! -d "$dir" ] && dir=$(find "$STORAGE" -maxdepth 1 -type d -iname "$fname" | head -n 1)
if [ -d "$dir" ]; then if [ -d "$dir" ]; then
if ! hasDisk || [ ! -f "$boot" ]; then if ! hasDisk || [ ! -f "$boot" ] || [ ! -f "$previous" ]; then
error "The bind $dir maps to a file that does not exist!" && return 1 error "The bind $dir maps to a file that does not exist!" && return 1
fi fi
previous=$(<"$previous")
previous="${previous//[![:print:]]/}"
ISO="$dir"
CUSTOM="$ISO"
BOOT="$STORAGE/$previous"
return 0
fi fi
file=$(find / -maxdepth 1 -type f -iname "$fname" | head -n 1) file=$(find / -maxdepth 1 -type f -iname "$fname" | head -n 1)