make_a_release.sh: use git send-email
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Sat, 10 Aug 2013 12:11:49 +0000 (15:11 +0300)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Tue, 13 Aug 2013 07:29:27 +0000 (10:29 +0300)
Use git send-email instead of mutt, since the mutt command we had does not
really work, and I am unable to find out how to make it work.

Additinally, inform about where to find packages for various distributions.

Change-Id: Ia6408683a4794377f0ebf9f6b5cd1dc1f8559ca3
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
make_a_release.sh

index 393d19d..d1e60af 100755 (executable)
@@ -104,14 +104,21 @@ git push origin $release_branch:$release_branch
 git push public master:master
 git push public $release_branch:$release_branch
 #5
-mutt -H /proc/self/fd/0 -x <<END_OF_EMAIL
-From: Artem Bityutskiy <dedekind1@gmail.com>
-To: bmap-tools@lists.infradead.org
+git send-email --suppress-cc=all --from "Artem Bityutskiy <dedekind1@gmail.com>" --to bmap-tools@lists.infradead.org /proc/self/fd/0 <<END_OF_EMAIL
 Subject: Announcement: $release_name is out!
 
 Bmap-tools version $new_ver is out!
 
 Release notes: http://git.infradead.org/users/dedekind/bmap-tools.git/blob/refs/heads/$release_branch:/docs/RELEASE_NOTES
 Tarball: ftp://ftp.infradead.org/pub/bmap-tools/
+
+Packages for various distributions are available here:
+http://download.tizen.org/tools/pre-release/
+
+At some later point they will be propagated to here:
+http://download.tizen.org/tools/latest-release/
+
+--
+Artem Bityutskiy
 END_OF_EMAIL
 EOF