From ea34545b919b95fba07644fba6dd94f49eae5713 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 16 Feb 2024 13:43:50 +0100 Subject: [PATCH] Update install.sh --- src/install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/install.sh b/src/install.sh index 91982bd..2cc8385 100644 --- a/src/install.sh +++ b/src/install.sh @@ -15,8 +15,9 @@ fi [[ "${VERSION,,}" == "10" ]] && VERSION="win10arm64" [[ "${VERSION,,}" == "win10" ]] && VERSION="win10arm64" -CUSTOM=$(find "$STORAGE" -maxdepth 1 -type f -iname custom.iso | head -n 1 | xargs basename) -[ -z "$CUSTOM" ] && CUSTOM=$(find "$STORAGE" -maxdepth 1 -type f -iname custom.img | head -n 1 | xargs basename) +CUSTOM=$(find "$STORAGE" -maxdepth 1 -type f -iname custom.iso -printf "%f\n" | head -n 1) +[ -z "$CUSTOM" ] && CUSTOM=$(find "$STORAGE" -maxdepth 1 -type f -iname boot.iso -printf "%f\n" | head -n 1) +[ -z "$CUSTOM" ] && CUSTOM=$(find "$STORAGE" -maxdepth 1 -type f -iname custom.img -printf "%f\n" | head -n 1) ESD_URL="" TMP="$STORAGE/tmp"