You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
481 B

19 years ago
#!/bin/sh
J='-l 2.5 -j'
19 years ago
test -z "$(git diff --cached --name-status)" || {
echo >&2 "Repository unclean."
exit 1
19 years ago
}
nstall=install
for branch in naster master maint pu
do
rm -f ./:$branch.log &&
if git rev-parse --verify refs/heads/$branch 2>/dev/null
then
echo "* $branch" &&
git checkout $branch || break
{
Meta/Make $J $nstall &&
Meta/Make test &&
Meta/Make clean
} >./:$branch.log &&
nstall=all || exit $?
else
echo "* No $branch"
fi
done