Fix reversion in lookupkey, contentlocation, and examinekey which caused them to sometimes output side messages.
This commit is contained in:
parent
66a24e0f36
commit
9a4af2324e
6 changed files with 17 additions and 3 deletions
|
@ -11,7 +11,7 @@ import Command
|
|||
import Annex.Content
|
||||
|
||||
cmd :: Command
|
||||
cmd = noCommit $
|
||||
cmd = noCommit $ noMessages $
|
||||
command "contentlocation" SectionPlumbing
|
||||
"looks up content for a key"
|
||||
(paramRepeating paramKey)
|
||||
|
|
|
@ -12,7 +12,7 @@ import qualified Utility.Format
|
|||
import Command.Find (parseFormatOption, showFormatted, keyVars)
|
||||
|
||||
cmd :: Command
|
||||
cmd = noCommit $ withGlobalOptions [jsonOption] $
|
||||
cmd = noCommit $ noMessages $ withGlobalOptions [jsonOption] $
|
||||
command "examinekey" SectionPlumbing
|
||||
"prints information from a key"
|
||||
(paramRepeating paramKey)
|
||||
|
|
|
@ -11,7 +11,7 @@ import Command
|
|||
import Annex.CatFile
|
||||
|
||||
cmd :: Command
|
||||
cmd = notBareRepo $ noCommit $
|
||||
cmd = notBareRepo $ noCommit $ noMessages $
|
||||
command "lookupkey" SectionPlumbing
|
||||
"looks up key used for file"
|
||||
(paramRepeating paramFile)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue