diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-16 15:10:07 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-16 15:10:07 -0400 |
commit | eed4a7fcdfbae821485d120055c8aec4824ecb3e (patch) | |
tree | f1e78213eebfcda52914a9d4e068bef1471a27d2 | |
parent | e80160380a16fbeb38f21f4683917b49a9221a91 (diff) |
tweak
-rw-r--r-- | Commands.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Commands.hs b/Commands.hs index a2535001e..11f808c21 100644 --- a/Commands.hs +++ b/Commands.hs @@ -71,7 +71,7 @@ parseCmd argv state = do (_, _, errs) -> ioError (userError (concat errs ++ usageInfo header options)) lookupCmd cmd = filter (\c -> cmd == cmdname c) cmds header = "Usage: git-annex [" ++ - (join "|" $ map cmdname cmds) ++ "] file ..." + (join "|" $ map cmdname cmds) ++ "] ..." options = [ Option ['f'] ["force"] (NoArg Force) "allow actions that may loose annexed data" ] {- Annexes a file, storing it in a backend, and then moving it into |