fix: Custom URL parsing (#129)

This commit is contained in:
Kroese 2024-05-22 00:55:52 +02:00 committed by GitHub
parent 3312c5a051
commit 936d4f9aa4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 11 deletions

View file

@ -1,5 +1,5 @@
FROM scratch FROM scratch
COPY --from=qemux/qemu-arm:2.00 / / COPY --from=qemux/qemu-arm:2.01 / /
ARG VERSION_ARG="0.0" ARG VERSION_ARG="0.0"
ARG DEBCONF_NOWARNINGS="yes" ARG DEBCONF_NOWARNINGS="yes"

View file

@ -17,8 +17,6 @@ PLATFORM="ARM64"
parseVersion() { parseVersion() {
VERSION="${VERSION/\//}"
if [[ "${VERSION}" == \"*\" || "${VERSION}" == \'*\' ]]; then if [[ "${VERSION}" == \"*\" || "${VERSION}" == \'*\' ]]; then
VERSION="${VERSION:1:-1}" VERSION="${VERSION:1:-1}"
fi fi
@ -216,7 +214,10 @@ getLanguage() {
parseLanguage() { parseLanguage() {
LANGUAGE="${LANGUAGE/_/-/}" REGION="${REGION//_/-/}"
KEYBOARD="${KEYBOARD//_/-/}"
LANGUAGE="${LANGUAGE//_/-/}"
[ -z "$LANGUAGE" ] && LANGUAGE="en" [ -z "$LANGUAGE" ] && LANGUAGE="en"
case "${LANGUAGE,,}" in case "${LANGUAGE,,}" in
@ -312,7 +313,7 @@ fromFile() {
local file="${1,,}" local file="${1,,}"
local arch="${PLATFORM,,}" local arch="${PLATFORM,,}"
case "${file/ /_}" in case "${file// /_}" in
*"_x64_"* | *"_x64."*) *"_x64_"* | *"_x64."*)
arch="x64" arch="x64"
;; ;;
@ -324,7 +325,7 @@ fromFile() {
;; ;;
esac esac
case "${file/ /_}" in case "${file// /_}" in
"win10"*| "win_10"* | *"windows10"* | *"windows_10"* ) "win10"*| "win_10"* | *"windows10"* | *"windows_10"* )
id="win10${arch}" id="win10${arch}"
;; ;;

View file

@ -24,7 +24,6 @@ cd /run
trap - ERR trap - ERR
info "Booting ${APP}${BOOT_DESC}..." info "Booting ${APP}${BOOT_DESC}..."
[[ "$DEBUG" == [Yy1]* ]] && echo "Arguments: $ARGS" && echo
{ qemu-system-aarch64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || : { qemu-system-aarch64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || :
(( rc != 0 )) && error "$(<"$QEMU_LOG")" && exit 15 (( rc != 0 )) && error "$(<"$QEMU_LOG")" && exit 15

View file

@ -65,7 +65,7 @@ startInstall() {
if [ -z "$CUSTOM" ]; then if [ -z "$CUSTOM" ]; then
local file="${VERSION/\//}.iso" local file="${VERSION//\//}.iso"
if [[ "${VERSION,,}" == "http"* ]]; then if [[ "${VERSION,,}" == "http"* ]]; then
@ -80,7 +80,7 @@ startInstall() {
language="${language%%-*}" language="${language%%-*}"
if [ -n "$language" ] && [[ "${language,,}" != "en" ]]; then if [ -n "$language" ] && [[ "${language,,}" != "en" ]]; then
file="${VERSION/\//}_${language,,}.iso" file="${VERSION//\//}_${language,,}.iso"
fi fi
fi fi
@ -675,8 +675,8 @@ updateImage() {
local asset="$2" local asset="$2"
local language="$3" local language="$3"
local file="autounattend.xml" local file="autounattend.xml"
local org="${file/.xml/.org}" local org="${file//.xml/.org}"
local dat="${file/.xml/.dat}" local dat="${file//.xml/.dat}"
local desc path src loc xml index result local desc path src loc xml index result
[[ "${DETECTED,,}" == "winxp"* ]] && return 0 [[ "${DETECTED,,}" == "winxp"* ]] && return 0