diff options
author | Scott Moser <smoser@brickies.net> | 2017-07-31 14:41:11 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-07-31 14:45:21 -0400 |
commit | f47c7ac027fc905ca7f6bee776007e2a922c117e (patch) | |
tree | a9d8f7b902f09afc4d1b4fe9e4c9f79bd5a5cd90 | |
parent | bca6137248b8b3dfa7569635bdd8df78c85ec230 (diff) | |
download | vyos-cloud-init-f47c7ac027fc905ca7f6bee776007e2a922c117e.tar.gz vyos-cloud-init-f47c7ac027fc905ca7f6bee776007e2a922c117e.zip |
debian/new-upstream-snapshot: fix bug in single line entries.
-rwxr-xr-x | debian/new-upstream-snapshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/new-upstream-snapshot b/debian/new-upstream-snapshot index aee432e3..4e7aaa0e 100755 --- a/debian/new-upstream-snapshot +++ b/debian/new-upstream-snapshot @@ -20,7 +20,7 @@ print_commit() { [ "${aname}" = "Scott Moser" ] && aname="" abugs="${aname:+ [${aname}]}${bugs:+ (LP: ${bugs})}" if [ $((${#subject}+${#abugs})) -le $(($ll-${#indent})) ]; then - echo "${indent}${subject}" + echo "${indent}${subject}${abugs}" elif [ ${#subject} -ge $(($ll-${#indent})) ]; then echo "${subject}${abugs}" | fmt --width=$(($ll-${#indent})) | |