Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-12-22 02:17:56 +0000
committerSravan Kumar Lakkimsetti2018-12-22 02:17:56 +0000
commit426b2af903129cda3729c93ac7cfaee4282601a1 (patch)
treed2e243fddd3480bca7c1b3f16b96739e304c4924 /production
parent512f0528deb01470693187cd96a373abd2d10f3f (diff)
downloadeclipse.platform.releng.aggregator-426b2af903129cda3729c93ac7cfaee4282601a1.tar.gz
eclipse.platform.releng.aggregator-426b2af903129cda3729c93ac7cfaee4282601a1.tar.xz
eclipse.platform.releng.aggregator-426b2af903129cda3729c93ac7cfaee4282601a1.zip
Bug 541598 - Generate gitLog as html report
Change-Id: I9c0de4b87c36dafd041018f98bb671c0091a99ea Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production')
-rwxr-xr-xproduction/build-functions.shsource2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 65e41e295..61b420258 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -558,7 +558,7 @@ fn-tag-build-inputs ()
TMP_GIT_LOG=${TMP_DIR}/gitlog.txt
echo -e "<h2>Git log from ${lastTag} (previous) to ${BUILD_ID} (current)</h2>" > ${GITLOG_FILE}
echo -e "<h2>The tagging, and this report, were done at about $REPORTTIMESTAMP</h2>" >> ${GITLOG_FILE}
- 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/platform/eclipse.platform.releng.aggregator.git/commit/?id=%H\">%s</a></td><td class=\"authorcell\">%aN</td></tr>">> ${TMP_GIT_LOG}
+ 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/platform/eclipse.platform.releng.aggregator.git/commit/?id=%H\">%s</a></td><td class=\"authorcell\">%aN</td></tr>"> ${TMP_GIT_LOG}
FILESIZE1=$(stat -c%s ${TMP_GIT_LOG})
if [ $FILESIZE1 -eq 0 ]
then

Back to the top