diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-02 15:59:37 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-02 15:59:37 +0000 |
commit | a8d57b05e71ad859eb0024704b216fe1de9f362a (patch) | |
tree | 61a15bab3e973a2ffa0c7d103a251805edaf7ca7 /libraries/cabal-bin.hs | |
parent | 7f92ef639b8ab59746d16fc30e5dfaaa6f0b5859 (diff) | |
download | haskell-a8d57b05e71ad859eb0024704b216fe1de9f362a.tar.gz |
Wibble cabal-bin's error message
We don't need to put the program name in it, as that happens automatically
Diffstat (limited to 'libraries/cabal-bin.hs')
-rw-r--r-- | libraries/cabal-bin.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/cabal-bin.hs b/libraries/cabal-bin.hs index 85341c299d..ad93a37dcb 100644 --- a/libraries/cabal-bin.hs +++ b/libraries/cabal-bin.hs @@ -34,5 +34,5 @@ main = do _ | packageName pd == PackageName "Cabal" -> -- Cabal is special...*sigh* Simple.defaultMainArgs args - | otherwise -> die "cabal: Don't know what to do!" + | otherwise -> die "Don't know what to do!" |