Skip to content

Commit ffcb483

Browse files
authored
fix: Update download links (#1172)
1 parent c081ec2 commit ffcb483

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG VERSION_ARG="latest"
22
FROM scratch AS build-amd64
33

4-
COPY --from=qemux/qemu:7.05 / /
4+
COPY --from=qemux/qemu:7.06 / /
55

66
ARG DEBCONF_NOWARNINGS="yes"
77
ARG DEBIAN_FRONTEND="noninteractive"

src/define.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -741,11 +741,6 @@ getMido() {
741741
sum="2dedd44c45646c74efc5a028f65336027e14a56f76686a4631cf94ffe37c72f2"
742742
url="https://download.microsoft.com/download/B/9/9/B999286E-0A47-406D-8B3D-5B5AD7373A4A/9600.17050.WINBLUE_REFRESH.140317-1640_X64FRE_ENTERPRISE_EVAL_EN-US-IR3_CENA_X64FREE_EN-US_DV9.ISO"
743743
;;
744-
"win7x64" | "win7x64-enterprise-eval" )
745-
size=3121248256
746-
sum="2c16c73388a5c02a0ec4cd8b9e5c14ba28b7b45d13d0c9c7d44459feecc0385f"
747-
url="http://care.dlservice.microsoft.com/dl/download/evalx/win7/x64/EN/7600.16385.090713-1255_x64fre_enterprise_en-us_EVAL_Eval_Enterprise-GRMCENXEVAL_EN_DVD.iso"
748-
;;
749744
"win2025-eval" )
750745
size=6014152704
751746
sum="d0ef4502e350e3c6c53c15b1b3020d38a5ded011bf04998e950720ac8579b23d"

src/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ detectCustom() {
206206
CUSTOM=""
207207

208208
if [ -d "/$fname" ]; then
209-
error "The file /$fname does not exist, please check that you mapped it to a valid path!" && return 1
209+
error "The file /$fname does not exist, please make sure that you mapped it to a valid path!" && return 1
210210
fi
211211

212212
file=$(find / -maxdepth 1 -type f -iname "$fname" | head -n 1)
@@ -495,7 +495,7 @@ setXML() {
495495
local file="/custom.xml"
496496

497497
if [ -d "$file" ]; then
498-
warn "The file $file does not exist, please check that you mapped it to a valid path!"
498+
warn "The file $file does not exist, please make sure that you mapped it to a valid path!"
499499
fi
500500

501501
[ ! -f "$file" ] || [ ! -s "$file" ] && file="$STORAGE/custom.xml"

src/mido.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ getWindows() {
314314
info "$msg" && html "$msg"
315315

316316
case "${version,,}" in
317-
"win2008r2" | "win7${PLATFORM,,}"* | "win81${PLATFORM,,}"* | "win11${PLATFORM,,}-enterprise-iot"* | "win11${PLATFORM,,}-enterprise-ltsc"* )
317+
"win2008r2" | "win81${PLATFORM,,}"* | "win11${PLATFORM,,}-enterprise-iot"* | "win11${PLATFORM,,}-enterprise-ltsc"* )
318318
if [[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-"* ]]; then
319319
error "No download in the $language language available for $edition!"
320320
MIDO_URL="" && return 1
@@ -342,7 +342,7 @@ getWindows() {
342342
"win2025-eval" | "win2022-eval" | "win2019-eval" | "win2019-hv" | "win2016-eval" | "win2012r2-eval" )
343343
download_windows_eval "$version" "$lang" "$edition" && return 0
344344
;;
345-
"win7${PLATFORM,,}"* | "win81${PLATFORM,,}-enterprise"* | "win2008r2" )
345+
"win81${PLATFORM,,}-enterprise"* | "win2008r2" )
346346
;;
347347
* ) error "Invalid VERSION specified, value \"$version\" is not recognized!" ;;
348348
esac

0 commit comments

Comments
 (0)