1
0
Mirror von https://github.com/dockur/windows.git synchronisiert 2026-06-11 12:49:36 +08:00

feat: Store installation type (#477)

Dieser Commit ist enthalten in:
Kroese
2024-05-09 15:59:06 +02:00
committet von GitHub
Ursprung 3b7e2373f7
Commit 5a000c1f9e
+3 -3
Datei anzeigen
@@ -107,9 +107,9 @@ finishInstall() {
if [ -w "$iso" ] && [[ "$aborted" != [Yy1]* ]]; then
# Mark ISO as prepared via magic byte
local byte="\x16"
[[ "$MANUAL" == [Yy1]* ]] && byte="\x17"
if ! printf "$byte" | dd of="$iso" bs=1 seek=0 count=1 conv=notrunc status=none; then
local byte="16"
[[ "$MANUAL" == [Yy1]* ]] && byte="17"
if ! printf '%b' "\x$byte" | dd of="$iso" bs=1 seek=0 count=1 conv=notrunc status=none; then
error "Failed to set magic byte in ISO file: $iso" && return 1
fi
fi