paludis-gentoo-git-config/etc/paludis/hooks/sync_all_post/sync_dtd.bash

14 lines
307 B
Bash

#!/bin/bash
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
source "/etc/paludis/hooks/set_portdir.bash"
DTDDIR=${PORTDIR}/metadata/dtd
ebegin "Updating DTDs"
if [[ -e ${DTDDIR} ]]; then
git -C "${DTDDIR}" pull --ff
else
git clone https://anongit.gentoo.org/git/data/dtd.git "${DTDDIR}"
fi
eend "$?"