Skip to content

Commit a833d08

Browse files
authored
Update generate-change-log.ps1 (#299)
1 parent 94f1b01 commit a833d08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

generate-change-log.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ if ($env:appveyor_repo_tag -eq "true")
1010
# updated changelog and the updated assembly info files
1111
git add CHANGELOG.md
1212
git commit -m "Update CHANGELOG for v$env:GitVersion_MajorMinorPatch.$env:GitVersion_CommitsSinceVersionSource"
13-
git push origin HEAD:$env:APPVEYOR_REPO_BRANCH
13+
# need to wrap the git command bellow so it doesn't throw an error because of redirecting the output to stderr
14+
"$(git push origin)"
1415
}

0 commit comments

Comments
 (0)