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
|
@ -13,14 +13,14 @@ import qualified Annex
|
|||
import qualified Command.Add
|
||||
|
||||
def :: [Command]
|
||||
def = [notDirect $ command "import" paramPaths seek
|
||||
def = [notDirect $ notBareRepo $ command "import" paramPaths seek
|
||||
"move and add files from outside git working copy"]
|
||||
|
||||
seek :: [CommandSeek]
|
||||
seek = [withPathContents start]
|
||||
|
||||
start :: (FilePath, FilePath) -> CommandStart
|
||||
start (srcfile, destfile) = notBareRepo $
|
||||
start (srcfile, destfile) =
|
||||
ifM (liftIO $ isRegularFile <$> getSymbolicLinkStatus srcfile)
|
||||
( do
|
||||
showStart "import" destfile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue