diff options
author | Joey Hess <joey@kitenet.net> | 2013-03-03 13:39:07 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-03-03 13:39:07 -0400 |
commit | 9bce151df7b073c5f2507ea15ca2237814ae9248 (patch) | |
tree | 653751d0c0f70475fc1bd7e89d0465fa76b8c630 /Command/Uninit.hs | |
parent | e4fc1c290dba197a16c0e1cc0ff07ecfe2ee542b (diff) |
git subcommand cleanup
Pass subcommand as a regular param, which allows passing git parameters
like -c before it. This was already done in the pipeing set of functions,
but not the command running set.
Diffstat (limited to 'Command/Uninit.hs')
-rw-r--r-- | Command/Uninit.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Uninit.hs b/Command/Uninit.hs index beb17394d..2ba32a2a6 100644 --- a/Command/Uninit.hs +++ b/Command/Uninit.hs @@ -67,6 +67,6 @@ start = next $ next $ do liftIO $ removeDirectoryRecursive annexdir -- avoid normal shutdown saveState False - inRepo $ Git.Command.run "branch" - [Param "-D", Param $ show Annex.Branch.name] + inRepo $ Git.Command.run + [Param "branch", Param "-D", Param $ show Annex.Branch.name] liftIO exitSuccess |