From 43a13e4958c97103101d3409dd62cb7b9ba082ce Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 19 Oct 2020 12:56:56 -0700 Subject: [PATCH] Remove extra newline at the end of the file (#806) Co-authored-by: Sima Zhu --- 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 c0590e2c9..c10f15549 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 } } }