diff options
author | 2016-11-30 14:16:57 -0400 | |
---|---|---|
committer | 2016-11-30 14:16:57 -0400 | |
commit | 36e8c675c9073e8bee1856c7150a129e6a61215c (patch) | |
tree | df6c39b2bcaa1b4e99fe3ab36c9de365aa508aea | |
parent | d0807487013361956edd67da3ea234541f32bf98 (diff) |
avoid too-long command synopsis
It was making git-annex usage output columns far too wide
-rw-r--r-- | Command/Reinject.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Command/Reinject.hs b/Command/Reinject.hs index 97aa602e7..7d2da9420 100644 --- a/Command/Reinject.hs +++ b/Command/Reinject.hs @@ -16,8 +16,7 @@ import Types.KeySource cmd :: Command cmd = command "reinject" SectionUtility "inject content of file back into annex" - (paramRepeating (paramPair "SRC" "DEST") - `paramOr` "--known " ++ paramRepeating "SRC") + (paramRepeating (paramPair "SRC" "DEST")) (seek <$$> optParser) data ReinjectOptions = ReinjectOptions |