convert notBareRepo to a CommandCheck
This avoids some small overhead by only running the check once per command; it also ensures that, even if the command doesn't find anything to run on, it still fails to run when in a bare repo.
This commit is contained in:
parent
e2788a5d15
commit
e872c3f648
10 changed files with 26 additions and 28 deletions
|
@ -18,15 +18,14 @@ import Annex.Content
|
|||
import Annex.CatFile
|
||||
|
||||
def :: [Command]
|
||||
def = [command "indirect" paramNothing seek "switch repository to indirect mode"]
|
||||
def = [notBareRepo $ command "indirect" paramNothing seek
|
||||
"switch repository to indirect mode"]
|
||||
|
||||
seek :: [CommandSeek]
|
||||
seek = [withNothing start]
|
||||
|
||||
start :: CommandStart
|
||||
start = notBareRepo $
|
||||
ifM isDirect
|
||||
( next perform, stop )
|
||||
start = ifM isDirect ( next perform, stop )
|
||||
|
||||
perform :: CommandPerform
|
||||
perform = do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue