From be81e6d6e1336d6aafbed454e5be47daa6ce3daa Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Tue, 23 Feb 2021 14:40:03 -0800 Subject: [PATCH] Add -NoNewLine to portfile output (#1724) --- eng/scripts/Initialize-VcpkgRelease.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/scripts/Initialize-VcpkgRelease.ps1 b/eng/scripts/Initialize-VcpkgRelease.ps1 index e726be932..f10cb582a 100644 --- a/eng/scripts/Initialize-VcpkgRelease.ps1 +++ b/eng/scripts/Initialize-VcpkgRelease.ps1 @@ -56,4 +56,4 @@ $portfileLocation = "$SourceDirectory/port/portfile.cmake" $newContent = Get-Content -Raw -Path $portfileLocation ` | ForEach-Object { $_ -replace '(SHA512\s+)1', "`${1}$sha512" } -$newContent | Set-Content $portfileLocation +$newContent | Set-Content $portfileLocation -NoNewLine