summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/buildhistory.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 3fbe3a8576..dfc9b73919 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -383,7 +383,7 @@ buildhistory_commit() {
383 repostatus=`git status --porcelain` 383 repostatus=`git status --porcelain`
384 if [ "$repostatus" != "" ] ; then 384 if [ "$repostatus" != "" ] ; then
385 git add ${BUILDHISTORY_DIR}/* 385 git add ${BUILDHISTORY_DIR}/*
386 HOSTNAME=`cat /etc/hostname 2>/dev/null || echo unknown` 386 HOSTNAME=`hostname 2>/dev/null || echo unknown`
387 git commit ${BUILDHISTORY_DIR}/ -m "Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null 387 git commit ${BUILDHISTORY_DIR}/ -m "Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null
388 if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then 388 if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then
389 git push -q ${BUILDHISTORY_PUSH_REPO} 389 git push -q ${BUILDHISTORY_PUSH_REPO}