From 4dfe6c64bdffc8f4a06465ab7f13691f8df6948f Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 14 Jan 2024 18:05:42 +0100 Subject: [PATCH] fix: Default to Win10 --- src/install.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/install.sh b/src/install.sh index e633126..02ee717 100644 --- a/src/install.sh +++ b/src/install.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -Eeuo pipefail -: "${VERSION:="win11x64"}" +: "${VERSION:="win10x64"}" BASE="$VERSION.iso" [ -f "$STORAGE/$BASE" ] && return 0 @@ -13,15 +13,14 @@ else PROGRESS="--progress=dot:giga" fi -URL="https://raw.githubusercontent.com/ElliotKillick/Mido/main/Mido.sh" -{ wget "$URL" -O "$STORAGE/Mido.sh" -q --no-check-certificate; rc=$?; } || : +SCRIPT="$STORAGE/mido.sh" -(( rc != 0 )) && error "Failed to download $URL, reason: $rc" && exit 65 +rm -f "$SCRIPT" +cp /run/mido.sh "$SCRIPT" +chmod +x "$SCRIPT" -chmod +x "$STORAGE/Mido.sh" -rm -f "$STORAGE/$BASE" - -bash "$STORAGE/Mido.sh" "$VERSION" +bash "$SCRIPT" "$VERSION" +rm -f "$SCRIPT" [ ! -f "$STORAGE/$BASE" ] && error "Failed to download $VERSION.iso!" && exit 66