Skip to content

Commit

Permalink
fix(release): fix the character escape in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 21, 2021
1 parent 92a4b0d commit 5d616ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ -n "$1" ]; then
{% for group, commits in commits | group_by(attribute=\"group\") %}
{{ group | upper_first }}\
{% for commit in commits %}
- {{ commit.message | upper_first }} ({{ commit.id | truncate(length=8, end="") }})\
- {{ commit.message | upper_first }} ({{ commit.id | truncate(length=8, end=\"\") }})\
{% endfor %}
{% endfor %}"
changelog=$(cargo run -- --unreleased --strip all)
Expand Down

0 comments on commit 5d616ee

Please sign in to comment.