Skip to content

Commit

Permalink
Remove extra newline at the end of the file (#11918)
Browse files Browse the repository at this point in the history
Co-authored-by: Sima Zhu <sizhu@microsoft.com>
  • Loading branch information
azure-sdk and sima-zhu authored Oct 19, 2020
1 parent 1ea97ab commit 856d340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/common/scripts/copy-docs-to-blobstorage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down

0 comments on commit 856d340

Please sign in to comment.