summaryrefslogtreecommitdiff
path: root/Command/Info.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-01-18 11:54:43 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-01-18 11:54:43 -0400
commit8b7b01c1b38635b309f4e90c8369c3258766f181 (patch)
tree7fc7a46aa3a3d315063fdb6f6a49282b175ac6fe /Command/Info.hs
parenta0c7d37d1e0ac10b7304e48ff78d0cfb0308d9e5 (diff)
Remove --json option from commands not supporting it.
Diffstat (limited to 'Command/Info.hs')
-rw-r--r--Command/Info.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/Command/Info.hs b/Command/Info.hs
index d465f2d84..7a9ec15dc 100644
--- a/Command/Info.hs
+++ b/Command/Info.hs
@@ -21,6 +21,7 @@ import qualified Remote
import qualified Command.Unused
import qualified Git
import qualified Annex
+import GitAnnex.Options
import Command
import Utility.DataUnits
import Utility.DiskFree
@@ -70,8 +71,9 @@ data StatInfo = StatInfo
type StatState = StateT StatInfo Annex
def :: [Command]
-def = [noCommit $ command "info" paramPaths seek
- SectionQuery "shows general information about the annex"]
+def = [noCommit $ withOptions [jsonOption] $
+ command "info" paramPaths seek SectionQuery
+ "shows general information about the annex"]
seek :: [CommandSeek]
seek = [withWords start]