diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-29 14:28:19 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-29 14:28:19 -0400 |
commit | ee3407de64d52d91500c6b761ad45c7a22eb73cb (patch) | |
tree | 5740f4e2c706f033d1a18602eb7e9148f6a1f365 /Command/Unannex.hs | |
parent | 1b007068ca4936306889b8b3af2bf224746a2318 (diff) |
block all commands that don't work in direct mode
I left status working in direct mode, although it doesn't show correct
stats for known annex keys.
Diffstat (limited to 'Command/Unannex.hs')
-rw-r--r-- | Command/Unannex.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/Unannex.hs b/Command/Unannex.hs index 89134bb84..c5ab028cd 100644 --- a/Command/Unannex.hs +++ b/Command/Unannex.hs @@ -16,7 +16,8 @@ import qualified Git.Command import qualified Git.LsFiles as LsFiles def :: [Command] -def = [command "unannex" paramPaths seek "undo accidential add command"] +def = [notDirect $ + command "unannex" paramPaths seek "undo accidential add command"] seek :: [CommandSeek] seek = [withFilesInGit $ whenAnnexed start] |