From 3d62989859381a8eab28d5e9566d5344cac07f0f Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 2 Apr 2025 22:17:51 +0200 Subject: [PATCH] fix: Ignore missing custom .iso after install --- src/install.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/install.sh b/src/install.sh index 981e625..920d2f8 100644 --- a/src/install.sh +++ b/src/install.sh @@ -200,13 +200,19 @@ abortInstall() { detectCustom() { - local file base + local dir file base local fname="custom.iso" + local boot="$STORAGE/windows.boot" CUSTOM="" - if [ -d "/$fname" ]; then - error "The file /$fname does not exist, please make sure that you mapped it to a valid path!" && return 1 + dir=$(find / -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 ! hasDisk || [ ! -f "$boot" ]; then + error "The bind $dir maps to a file that does not exist!" && return 1 + fi fi file=$(find / -maxdepth 1 -type f -iname "$fname" | head -n 1)