Skip to content

Commit

Permalink
fix: make newlines from git log follow Unix standard
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtabrams committed Feb 8, 2021
1 parent fede998 commit 11345bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion change
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ get_commits_between() {
tag_range="$latest_log_tag.."
[ "$latest_git_tag" = "$highest_tag" ] && tag_range="$latest_log_tag..$needed_tag"

git log --pretty=format:"$log_format" "$tag_range"
git log --pretty=format:"$log_format" "$tag_range" | sed "s|$||"
}

#### Utils ####
Expand Down

0 comments on commit 11345bd

Please sign in to comment.