summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pagano <mpagano@gentoo.org>2018-08-10 09:00:17 -0400
committerMike Pagano <mpagano@gentoo.org>2018-08-10 09:00:17 -0400
commitc51a5e17f8e8977e3f2e1c6deff5d88c4cd5ae29 (patch)
treeddf7e9d60539ec56a02dc8a1f1230664525e807a
parentAdding genpatchesrc.example file to help document genpatches (diff)
downloadlinux-patches-c51a5e17.tar.gz
linux-patches-c51a5e17.tar.bz2
linux-patches-c51a5e17.zip
email announcement cleanup
-rwxr-xr-xweb/email-announcement.pl4
1 files changed, 0 insertions, 4 deletions
diff --git a/web/email-announcement.pl b/web/email-announcement.pl
index 5b1755b8..c5c2b56c 100755
--- a/web/email-announcement.pl
+++ b/web/email-announcement.pl
@@ -35,7 +35,6 @@ $result = `git -C ${LOCAL_TMP}/linux-patches checkout ${tag}`;
if ($rel > 1) {
$oldtag = $ver.'-'.($rel-1);
$cmd='git -C '.${LOCAL_TMP}.'/linux-patches rev-list '.$oldtag;
-# printf ("1 cmd is $cmd\n");
@output = `$cmd`;
foreach $line (@output) {
@@ -52,13 +51,11 @@ if ($rel > 1) {
if ($have_history == 1) {
$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$oldtag.'..'.$tag;
-# printf ("2 cmd is $cmd\n");
@log_lines = `$cmd`;
$have_history = 1;
}
else {
$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$tag;
-# printf ("3 cmd is $cmd\n");
@log_lines = `$cmd`;
}
}
@@ -67,7 +64,6 @@ else {
#$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$ver;
#$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" ..'.$tag;
$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" '.$tag.'...master';
-# printf ("4 cmd is $cmd\n");
@log_lines = `$cmd`;
}