fix: Convert line endings (#171)

This commit is contained in:
Kroese 2024-02-16 12:32:06 +01:00 committed by GitHub
parent 132157edf6
commit 7e970a8e18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -797,7 +797,8 @@ prepareXP() {
[[ "${arch,,}" == "amd64" ]] && key="B66VY-4D94T-TPPD4-43F72-8X4FY"
local sif="$target/WINNT.SIF"
{ echo "[Data]"
{ echo "[Data]"
echo "AutoPartition=1"
echo "MsDosInitiated=\"0\""
echo "UnattendedInstall=\"Yes\""
@ -850,7 +851,7 @@ prepareXP() {
echo ""
echo "[TerminalServices]"
echo "AllowConnections=1"
} > "$sif"
} | unix2dos > "$sif"
return 0
}