diff --git a/src/install.sh b/src/install.sh index 24e1221..852cdad 100644 --- a/src/install.sh +++ b/src/install.sh @@ -4,11 +4,6 @@ set -Eeuo pipefail file=$(find / -maxdepth 1 -type f -iname boot.iso | head -n 1) [ ! -s "$file" ] && file=$(find "$STORAGE" -maxdepth 1 -type f -iname boot.iso | head -n 1) -if [ ! -s "$file" ] && [[ "${BOOT,,}" != "http"* ]]; then - base=$(basename "$BOOT") - file="$STORAGE/$base" -fi - if [ -f "$file" ] && [ -s "$file" ]; then BOOT="$file" return 0