Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-11-15 07:21:12 +0000
committerAlexander Kurtakov2020-11-15 07:23:00 +0000
commit7f52ae94194cc80200f143f01bd63fee315c4c89 (patch)
treed3a4b5f70457b709db7a9dfc751cc6a1b0ad93f0
parent93a914902256c993fc7f7044ef1eafbabbbca21e (diff)
downloadeclipse.platform.releng.aggregator-7f52ae94194cc80200f143f01bd63fee315c4c89.tar.gz
eclipse.platform.releng.aggregator-7f52ae94194cc80200f143f01bd63fee315c4c89.tar.xz
eclipse.platform.releng.aggregator-7f52ae94194cc80200f143f01bd63fee315c4c89.zip
Really stop generating width=80% in gitLog.php
Change-Id: I74c22f1ea04262bf483620861b2a895a93e3e44c Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rwxr-xr-xcje-production/mbscripts/mb110_tagBuildInputs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cje-production/mbscripts/mb110_tagBuildInputs.sh b/cje-production/mbscripts/mb110_tagBuildInputs.sh
index 301983b18..1d2bb3012 100755
--- a/cje-production/mbscripts/mb110_tagBuildInputs.sh
+++ b/cje-production/mbscripts/mb110_tagBuildInputs.sh
@@ -71,7 +71,7 @@ if [[ -n "$lastTag" ]]; then
echo "</tbody></table><br><br>" >> $gitLogFile
echo >> $gitLogFile
fi
- git submodule --quiet foreach "comp=\$(echo \$path|cut -d. -f2);git log $lastTag..$BUILD_ID --date=short --format=format:\"<tr><td class=\\\"datecell\\\">%cd</td><td class=\\\"commitcell\\\"><a href=\\\"https://git.eclipse.org/c/\$comp/\$path.git/commit/?id=%H\\\">%s</a></td><td class=\\\"authorcell\\\">%aN</td></tr>\">$tmpGitLog;FILESIZE=\$(stat -c%s $tmpGitLog);if [ \$FILESIZE -ne 0 ]; then echo \"<table width=\\\"80%\\\"><tbody> <tr><th class=\\\"cell\\\" colspan=\\\"3\\\">Repository: \$path</th></tr>\";echo \"<tr> <th class=\\\"datecell\\\">Date</th> <th class=\\\"commitcell\\\">Commit message</th> <th class=\\\"authorcell\\\">Author</th> </tr>\";cat $tmpGitLog;echo \"</tbody></table><br><br>\";echo;fi" >> $gitLogFile
+ git submodule --quiet foreach "comp=\$(echo \$path|cut -d. -f2);git log $lastTag..$BUILD_ID --date=short --format=format:\"<tr><td class=\\\"datecell\\\">%cd</td><td class=\\\"commitcell\\\"><a href=\\\"https://git.eclipse.org/c/\$comp/\$path.git/commit/?id=%H\\\">%s</a></td><td class=\\\"authorcell\\\">%aN</td></tr>\">$tmpGitLog;FILESIZE=\$(stat -c%s $tmpGitLog);if [ \$FILESIZE -ne 0 ]; then echo \"<table><tbody> <tr><th class=\\\"cell\\\" colspan=\\\"3\\\">Repository: \$path</th></tr>\";echo \"<tr> <th class=\\\"datecell\\\">Date</th> <th class=\\\"commitcell\\\">Commit message</th> <th class=\\\"authorcell\\\">Author</th> </tr>\";cat $tmpGitLog;echo \"</tbody></table><br><br>\";echo;fi" >> $gitLogFile
else
echo -e "\n\tGit log not generated because a reasonable previous tag could not be found." > $gitLogFile
fi

Back to the top