„base_flux.sh“ ändern

This commit is contained in:
iggy 2024-09-12 07:16:52 +00:00
parent e438964b89
commit 75f21d484f

View File

@ -331,7 +331,7 @@ function provisioning_download() {
if [[ -n $auth_token ]]; then if [[ -n $auth_token ]]; then
wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$file_path" "$url" & # Use the new variables for storing the URL and file path wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$file_path" "$url" & # Use the new variables for storing the URL and file path
else else
wget -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -O "$file_path" "$url" & # Use the new variables for storing the URL and file path wget -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$file_path" "$url" & # Use the new variables for storing the URL and file path
fi fi
} }