commit: eca85db2728dc6d9d86d3eb5987ed2ac10be9841
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 25 11:41:11 2018 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Wed Jul 25 11:41:11 2018 +0000
URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=eca85db2
Remove debug lines
web/email-announcement.pl | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/web/email-announcement.pl b/web/email-announcement.pl
index 476941f..1020df4 100755
--- a/web/email-announcement.pl
+++ b/web/email-announcement.pl
@@ -33,7 +33,7 @@ $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");
+# printf ("1 cmd is $cmd\n");
@output = `$cmd`;
foreach $line (@output) {
@@ -50,13 +50,13 @@ 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");
+# 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");
+# printf ("3 cmd is $cmd\n");
@log_lines = `$cmd`;
}
}
@@ -65,7 +65,7 @@ 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");
+# printf ("4 cmd is $cmd\n");
@log_lines = `$cmd`;
}