summaryrefslogtreecommitdiff
path: root/git-debpush
diff options
context:
space:
mode:
Diffstat (limited to 'git-debpush')
-rwxr-xr-xgit-debpush7
1 files changed, 4 insertions, 3 deletions
diff --git a/git-debpush b/git-debpush
index 5b99e72..744212a 100755
--- a/git-debpush
+++ b/git-debpush
@@ -393,12 +393,13 @@ if [ "$format" = "3.0 (quilt)" ]; then
fi
fi
-git tag "${git_tag_opts[@]}" -s -F- "$debian_tag" "$branch" <<EOF
-$source release $version for $target
+tagmessage="$source release $version for $target
[dgit distro=$distro split$quilt_mode_text]
[dgit please-upload$upstream_info]
-EOF
+"
+
+git tag "${git_tag_opts[@]}" -s -m "$tagmessage" "$debian_tag" "$branch"
# **** Do a git push ****