Be less verbose

This commit is contained in:
hasufell 2015-08-19 21:05:45 +02:00
parent 6cb31c2b54
commit 573f2ba6c5
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
4 changed files with 7 additions and 7 deletions

View File

@ -7,8 +7,8 @@ source /etc/portage/util-functions.sh
DTDDIR="${PORTDIR}"/metadata/dtd
ebegin "Updating DTDs"
if [[ -e ${DTDDIR} ]]; then
git -C "${DTDDIR}" pull --ff
git -C "${DTDDIR}" pull -q --ff
else
git clone https://anongit.gentoo.org/git/data/dtd.git "${DTDDIR}"
git clone -q https://anongit.gentoo.org/git/data/dtd.git "${DTDDIR}"
fi
eend "$?"

View File

@ -7,8 +7,8 @@ source /etc/portage/util-functions.sh
GLSADIR="${PORTDIR}"/metadata/glsa
ebegin "Updating GLSAs"
if [[ -e ${GLSADIR} ]]; then
git -C "${GLSADIR}" pull --ff
git -C "${GLSADIR}" pull -q --ff
else
git clone https://anongit.gentoo.org/git/data/glsa.git "${GLSADIR}"
git clone -q https://anongit.gentoo.org/git/data/glsa.git "${GLSADIR}"
fi
eend "$?"

View File

@ -5,5 +5,5 @@ source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
ebegin "Updating herds.xml"
wget -O "${PORTDIR}"/metadata/herds.xml https://api.gentoo.org/packages/herds.xml
wget -q -O "${PORTDIR}"/metadata/herds.xml https://api.gentoo.org/packages/herds.xml
eend $?

View File

@ -7,9 +7,9 @@ source /etc/portage/util-functions.sh
NEWSDIR="${PORTDIR}"/metadata/news
ebegin "Updating news items"
if [[ -e ${NEWSDIR} ]]; then
git -C "${NEWSDIR}" pull --ff
git -C "${NEWSDIR}" pull -q --ff
else
git clone https://anongit.gentoo.org/git/proj/gentoo-news.git "${NEWSDIR}"
git clone -q https://anongit.gentoo.org/git/proj/gentoo-news.git "${NEWSDIR}"
fi
eend_die $?