Be less verbose
This commit is contained in:
parent
6cb31c2b54
commit
573f2ba6c5
@ -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 "$?"
|
||||
|
@ -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 "$?"
|
||||
|
@ -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 $?
|
||||
|
@ -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 $?
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user