diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-01-10 20:43:32 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-01-10 20:43:32 +0100 |
commit | 3d51d6307791cf49c2ef28f2c05a542e521d85d7 (patch) | |
tree | 225e9d7ac308a89bdb19dcaa508f9db60132f36b /tools/changelog.sh | |
parent | 3635d7cf7e300b5ba746c384fc3e87a35561e62d (diff) | |
download | zsh-3d51d6307791cf49c2ef28f2c05a542e521d85d7.tar.gz zsh-3d51d6307791cf49c2ef28f2c05a542e521d85d7.tar.bz2 zsh-3d51d6307791cf49c2ef28f2c05a542e521d85d7.zip |
fix(changelog): fix spacing in breaking changes message
Diffstat (limited to 'tools/changelog.sh')
-rwxr-xr-x | tools/changelog.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/changelog.sh b/tools/changelog.sh index 7275db53a..836afef14 100755 --- a/tools/changelog.sh +++ b/tools/changelog.sh @@ -286,7 +286,7 @@ function display-release { local hash subject for hash message in ${(kv)breaking}; do - echo " - $(fmt:hash) $(fmt:scope) $(fmt:subject "${message}")" + echo " - $(fmt:hash) $(fmt:scope)$(fmt:subject "${message}")" done | sort echo } |