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.
This commit is contained in:
parent
3a783b4a3a
commit
0c13d3065e
20 changed files with 95 additions and 76 deletions
|
@ -43,8 +43,11 @@ perform = do
|
|||
showStart "commit" ""
|
||||
whenM (stageDirect) $ do
|
||||
showOutput
|
||||
void $ inRepo $ Git.Command.runBool "commit"
|
||||
[Param "-m", Param "commit before switching to indirect mode"]
|
||||
void $ inRepo $ Git.Command.runBool
|
||||
[ Param "commit"
|
||||
, Param "-m"
|
||||
, Param "commit before switching to indirect mode"
|
||||
]
|
||||
showEndOk
|
||||
|
||||
-- Note that we set indirect mode early, so that we can use
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue