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
|
@ -23,7 +23,8 @@ import Utility.FileMode
|
|||
import Config
|
||||
|
||||
def :: [Command]
|
||||
def = [notDirect $ command "add" paramPaths seek "add files to annex"]
|
||||
def = [notDirect $ notBareRepo $
|
||||
command "add" paramPaths seek "add files to annex"]
|
||||
|
||||
{- Add acts on both files not checked into git yet, and unlocked files. -}
|
||||
seek :: [CommandSeek]
|
||||
|
@ -33,7 +34,7 @@ seek = [withFilesNotInGit start, withFilesUnlocked start]
|
|||
- backend, and then moving it into the annex directory and setting up
|
||||
- the symlink pointing to its content. -}
|
||||
start :: FilePath -> CommandStart
|
||||
start file = notBareRepo $ ifAnnexed file fixup add
|
||||
start file = ifAnnexed file fixup add
|
||||
where
|
||||
add = do
|
||||
s <- liftIO $ getSymbolicLinkStatus file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue