From 19dab7c96993bf605dad2e81121a696659c81e0b Mon Sep 17 00:00:00 2001 From: hasufell Date: Sat, 15 Aug 2015 15:58:01 +0200 Subject: [PATCH] Fix bug in sync_dtd, thanks to freke --- etc/paludis/hooks/sync_all_post/sync_dtd.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/paludis/hooks/sync_all_post/sync_dtd.bash b/etc/paludis/hooks/sync_all_post/sync_dtd.bash index 8167604..2e76cb5 100644 --- a/etc/paludis/hooks/sync_all_post/sync_dtd.bash +++ b/etc/paludis/hooks/sync_all_post/sync_dtd.bash @@ -8,7 +8,7 @@ source "/etc/paludis/hooks/set_portdir.bash" cd "${PORTDIR}"/metadata || die "could not cd into '${PORTDIR}/metadata'!" if [[ -e dtd ]] ; then einfo "dtd dir already exists, updating..." - cd glsa || die "could not cd into 'dtd'!" + cd dtd || die "could not cd into 'dtd'!" git pull --ff || die "could not pull updates!" else einfo "dtd directory does not exist, cloning..."