Skip to content

Commit

Permalink
respect the -q switch in this script
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Marlow committed Jan 19, 2006
1 parent 44deb23 commit abd6576
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions darcs-all
Expand Up @@ -7,16 +7,25 @@ top_dirs="nofib testsuite"
default_repo_root="http://darcs.haskell.org/"
default_lib_repo_root=$default_repo_root/packages

quiet=NO

function message()
{
if [ "$quiet" = "NO" ]; then
echo $*
fi
}

function darcsall()
{
echo == running darcs $* at the top level
message "== running darcs $* at the top level"
darcs $*
for dir in $top_dirs; do
if test -d $dir -a -d $dir/_darcs; then
echo "== running darcs $* in $dir"
message "== running darcs $* in $dir"
darcs $* --repodir $dir
else
echo "== $dir not present or not a repository; skipping"
message "== $dir not present or not a repository; skipping"
fi
done
for pkg in `cat libraries/default-packages`; do
Expand Down Expand Up @@ -48,7 +57,7 @@ function darcsget()
echo "warning: $pkg already present; omitting"
else
repo=$lib_repos/$pkg
echo "== running darcs get --partial $* $repo"
message "== running darcs get --partial $* $repo"
darcs get --partial $* $repo
fi
done
Expand All @@ -59,6 +68,10 @@ if test ! -d _darcs -o ! -d ghc; then
exit 1;
fi

case $* in
*-q*) quiet=YES;;
esac

case $1 in
get) shift; darcsget $*;;
# Hack around whatsnew failing if there are no changes
Expand Down

0 comments on commit abd6576

Please sign in to comment.