From fab776764fedcd3c517283d8386c97254996e984 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 19 Jan 2024 03:04:26 +0100 Subject: [PATCH] fix: Strip query parameters from filename (#576) --- src/install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/install.sh b/src/install.sh index 788580e..f5f758c 100644 --- a/src/install.sh +++ b/src/install.sh @@ -10,7 +10,10 @@ else BASE="DSM_VirtualDSM_42962" fi -[ -n "$URL" ] && BASE=$(basename "$URL" .pat) +if [ -n "$URL" ]; then + PURL="${URL%%\?*}" + BASE=$(basename "$PURL" .pat) +fi if [[ -f "$STORAGE/$BASE.boot.img" ]] && [[ -f "$STORAGE/$BASE.system.img" ]]; then return 0 # Previous installation found @@ -34,7 +37,8 @@ fi [ -z "$URL" ] && URL="$DL/release/7.2.1/69057-1/DSM_VirtualDSM_69057.pat" -BASE=$(basename "$URL" .pat) +PURL="${URL%%\?*}" +BASE=$(basename "$PURL" .pat) if [[ "$URL" != "file://$STORAGE/$BASE.pat" ]]; then rm -f "$STORAGE/$BASE.pat" @@ -165,7 +169,7 @@ fi rm -rf "$TMP" && mkdir -p "$TMP" -info "Install: Downloading $(basename "$URL")..." +info "Install: Downloading $(basename "$PURL")..." PAT="/$BASE.pat" rm -f "$PAT"