From 974c46cc1e2d0f5a43ff6494f6b5068256e04c9f Mon Sep 17 00:00:00 2001 From: "Mr.k" Date: Wed, 23 Oct 2024 17:56:42 +0300 Subject: [PATCH] Save WinUtil's json strings with DOS-Style Newline Character (CRLF) instead of Unix-Style Newline Character (LF) Originated from PR #2816 by @ruxunderscore --- Compile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compile.ps1 b/Compile.ps1 index f427e355..98257848 100644 --- a/Compile.ps1 +++ b/Compile.ps1 @@ -91,7 +91,7 @@ $($jsonAsObject | ConvertTo-Json -Depth 3) "@ $sync.configs.$($psitem.BaseName) = $json | ConvertFrom-Json - $script_content.Add($(Write-Output "`$sync.configs.$($psitem.BaseName) = @'`n$json`n'@ `| ConvertFrom-Json" )) + $script_content.Add($(Write-Output "`$sync.configs.$($psitem.BaseName) = @'`r`n$json`r`n'@ `| ConvertFrom-Json" )) } # Read the entire XAML file as a single string, preserving line breaks