diff options
author | Ian Lynagh <igloo@earth.li> | 2006-01-13 21:24:20 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2006-01-13 21:24:20 +0000 |
commit | a52c9ee87491e0dfd2f8f816c40c80ea2712c6c3 (patch) | |
tree | 2f6d317b34908942112f4aea158250728b3e3eca /darcs-all | |
parent | b785be47556f5c1128e76355471fdb5de0a1ee64 (diff) | |
download | haskell-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-all | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |