We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2475f39 commit 0ab6819Copy full SHA for 0ab6819
1 file changed
Build/scripts/pre_build.ps1
@@ -104,7 +104,8 @@ if (Test-Path Env:\TF_BUILD_SOURCEGETVERSION)
104
105
# commit message
106
$command = "$gitExe log -1 --name-status -p $commitHash"
107
- $CommitMessage = iex $command
+ $CommitMessageLines = iex $command
108
+ $CommitMessage = $CommitMessageLines -join "`r`n"
109
110
$changeTextFile = Join-Path -Path $outputDir -ChildPath "change.txt"
111
0 commit comments