diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-07-28 20:00:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-28 20:00:46 -0400 |
| commit | dc0f1788f45be44ce1060ac257f12defef37f0ca (patch) | |
| tree | 77ff350067bc0ddc2f6e1f3e03088bb555e95914 | |
| parent | 27289929c091dfd6ffbd7823adf9a233ac7339c5 (diff) | |
| parent | 965c447c63b21a094bdca5506c1a0d30ec608f74 (diff) | |
Merge pull request #3720 from joshuaboniface/fix-bump-version
Fix bump_version so it works properly
| -rwxr-xr-x | bump_version | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bump_version b/bump_version index 46b7f86e0..1c943f691 100755 --- a/bump_version +++ b/bump_version @@ -4,6 +4,7 @@ set -o errexit set -o pipefail +set -o xtrace usage() { echo -e "bump_version - increase the shared version and generate changelogs" @@ -58,7 +59,7 @@ sed -i "s/${old_version_sed}/${new_version}/g" ${debian_equivs_file} debian_changelog_file="debian/changelog" debian_changelog_temp="$( mktemp )" # Create new temp file with our changelog -echo -e "jellyfin (${new_version_deb}) unstable; urgency=medium +echo -e "jellyfin-server (${new_version_deb}) unstable; urgency=medium * New upstream version ${new_version}; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v${new_version} |
