Meta/pushall: adjust to new layout

This commit is contained in:
Junio C Hamano
2011-11-16 22:46:01 -08:00
parent 67b04653e3
commit 3646cd6e54

10
pushall
View File

@@ -9,7 +9,11 @@ done
case "$#" in
0)
printf "github mirror: "
git push github "$@" ;;
*)
echo "No push to github" ;;
git push github "$@" || exit $?
for topic in htmldocs manpages
do
printf "%s: " "$topic"
( cd ../git-$topic.git && git push ) || exit
done
;;
esac