assistant: Support repairing git remotes that are locally accessible
(eg, on removable drives) gcrypt remotes are not yet handled. This commit was sponsored by Sören Brunk.
This commit is contained in:
parent
98ae3afc81
commit
7ed8e87a34
21 changed files with 132 additions and 75 deletions
|
@ -117,6 +117,9 @@ gen r u c gc
|
|||
, remoteFsck = if Git.repoIsUrl r
|
||||
then Nothing
|
||||
else Just $ fsckOnRemote r
|
||||
, repairRepo = if Git.repoIsUrl r
|
||||
then Nothing
|
||||
else Just $ repairRemote r
|
||||
, config = M.empty
|
||||
, localpath = localpathCalc r
|
||||
, repo = r
|
||||
|
@ -419,6 +422,10 @@ fsckOnRemote r params
|
|||
] ++ env
|
||||
batchCommandEnv program (Param "fsck" : params) (Just env')
|
||||
|
||||
{- The passed repair action is run in the Annex monad of the remote. -}
|
||||
repairRemote :: Git.Repo -> Annex Bool -> Annex (IO Bool)
|
||||
repairRemote r a = return $ Remote.Git.onLocal r a
|
||||
|
||||
{- Runs an action on a local repository inexpensively, by making an annex
|
||||
- monad using that repository. -}
|
||||
onLocal :: Git.Repo -> Annex a -> IO a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue