diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-01-29 13:20:24 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-01-29 13:20:24 -0400 |
commit | 06da0e06162cf62d2bac67c8d8da7160e0d0c74d (patch) | |
tree | ff3e370e1472452e9d265699fe95fc66363a93e3 /Command | |
parent | 5a6ca3a66b1d7cc87ff544cb713f07133da36ca0 (diff) |
Fix reversion in lookupkey, contentlocation, and examinekey which caused them to sometimes output side messages.
Diffstat (limited to 'Command')
-rw-r--r-- | Command/ContentLocation.hs | 2 | ||||
-rw-r--r-- | Command/ExamineKey.hs | 2 | ||||
-rw-r--r-- | Command/LookupKey.hs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Command/ContentLocation.hs b/Command/ContentLocation.hs index 7cd6c2995..5b2acb6a5 100644 --- a/Command/ContentLocation.hs +++ b/Command/ContentLocation.hs @@ -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) diff --git a/Command/ExamineKey.hs b/Command/ExamineKey.hs index 1ca1f9fb5..5f67587a8 100644 --- a/Command/ExamineKey.hs +++ b/Command/ExamineKey.hs @@ -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) diff --git a/Command/LookupKey.hs b/Command/LookupKey.hs index 1f21a582e..609fe562e 100644 --- a/Command/LookupKey.hs +++ b/Command/LookupKey.hs @@ -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) |