diff options
author | Joey Hess <joey@kitenet.net> | 2010-12-31 15:46:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-12-31 15:46:33 -0400 |
commit | eac433a84ad397e371300343b7cd30b7741ee023 (patch) | |
tree | b3e02fa4f6942657f622c4790d9fb4d2d2a17e95 /Annex.hs | |
parent | 60df4e5728b8af804f06c39ef3b897af12247ceb (diff) |
use git-annex-shell configlist
Diffstat (limited to 'Annex.hs')
-rw-r--r-- | Annex.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,7 +47,7 @@ new gitrepo allbackends = do where prep = do -- read git config and update state - gitrepo' <- liftIO $ Git.configRead gitrepo Nothing + gitrepo' <- liftIO $ Git.configRead gitrepo Annex.gitRepoChange gitrepo' {- performs an action in the Annex monad -} @@ -136,5 +136,5 @@ setConfig key value = do g <- Annex.gitRepo liftIO $ Git.run g ["config", key, value] -- re-read git config and update the repo's state - g' <- liftIO $ Git.configRead g Nothing + g' <- liftIO $ Git.configRead g Annex.gitRepoChange g' |