build: Update QEMU base image to v7.20 (#1446)

This commit is contained in:
Kroese
2025-10-03 00:00:08 +02:00
committed by GitHub
parent eeb3425211
commit ae185de314
4 changed files with 11 additions and 9 deletions

View File

@@ -127,8 +127,9 @@ startInstall() {
if [[ "${VERSION,,}" == "http"* ]]; then
file=$(basename "${VERSION%%\?*}")
: "${file//+/ }"; printf -v file '%b' "${_//%/\\x}"
file=$(echo "$file" | sed -e 's/[^A-Za-z0-9._-]/_/g')
file="${file//+/ }"
printf -v file '%b' "${file//%/\\x}"
file="${file//[!A-Za-z0-9._-]/_}"
else