From 2a3d32230d80559c0f7decb752585e42c7e4b0b6 Mon Sep 17 00:00:00 2001 From: Sima Zhu Date: Mon, 19 Oct 2020 10:47:53 -0700 Subject: [PATCH] Remove extra newline at the end of the file --- eng/common/scripts/copy-docs-to-blobstorage.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/scripts/copy-docs-to-blobstorage.ps1 b/eng/common/scripts/copy-docs-to-blobstorage.ps1 index c0590e2c9efc..c10f155496e0 100644 --- a/eng/common/scripts/copy-docs-to-blobstorage.ps1 +++ b/eng/common/scripts/copy-docs-to-blobstorage.ps1 @@ -208,7 +208,7 @@ function Upload-Blobs $fileContent = Get-Content -Path $htmlFile -Raw $updatedFileContent = $fileContent -replace $RepoReplaceRegex, "`${1}$ReleaseTag" if ($updatedFileContent -ne $fileContent) { - Set-Content -Path $htmlFile -Value $updatedFileContent + Set-Content -Path $htmlFile -Value $updatedFileContent -NoNewLine } } }