aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-12-18 16:20:03 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-18 17:06:57 +0000
commitb117403423f700eb4cc6967b9fb8ff3e2858e279 (patch)
tree28cc7e70b09e92e021bc3fa61acb7715d94941ef
parent556368ba8a1f933a86b69be024bd0711d4bfe0a3 (diff)
downloadopenembedded-core-contrib-b117403423f700eb4cc6967b9fb8ff3e2858e279.tar.gz
buildhistory: be quiet when garbage collecting the git repo
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 3590da0480..e9a9c3b4e5 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -534,7 +534,7 @@ END
for entry in `echo "$repostatus" | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do
git commit $entry metadata-revs -m "$entry: Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" -m "cmd: $CMDLINE" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null
done
- git gc --auto
+ git gc --auto --quiet
if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then
git push -q ${BUILDHISTORY_PUSH_REPO}
fi