summaryrefslogtreecommitdiff
path: root/darcs-all
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2006-01-13 21:24:20 +0000
committerIan Lynagh <igloo@earth.li>2006-01-13 21:24:20 +0000
commita52c9ee87491e0dfd2f8f816c40c80ea2712c6c3 (patch)
tree2f6d317b34908942112f4aea158250728b3e3eca /darcs-all
parentb785be47556f5c1128e76355471fdb5de0a1ee64 (diff)
downloadhaskell-a52c9ee87491e0dfd2f8f816c40c80ea2712c6c3.tar.gz
Pass anything through to darcs and let it do the failing on bad commands
Diffstat (limited to 'darcs-all')
-rw-r--r--darcs-all5
1 files changed, 3 insertions, 2 deletions
diff --git a/darcs-all b/darcs-all
index 544d9cc91c..222c512129 100644
--- a/darcs-all
+++ b/darcs-all
@@ -1,5 +1,7 @@
#!/bin/sh
+set -e
+
top_dirs="nofib testsuite"
default_repo_root="http://darcs.haskell.org/"
@@ -58,7 +60,6 @@ if test ! -d _darcs -o ! -d ghc; then
fi
case $1 in
- push|pull|wh*) darcsall $*;;
get) shift; darcsget $*;;
- *) echo "syntax: ./darcs-all push|pull|whatsnew|get"; exit 1;;
+ *) darcsall $*;;
esac