Fix annex.adviceNoSshCaching having no effect
git will always return option names in lowercase
This commit is contained in:
parent
49ee07f93d
commit
445aa0d93b
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ extractGitConfig configsource r = GitConfig
|
||||||
| otherwise = Nothing
|
| otherwise = Nothing
|
||||||
in mapMaybe get (M.toList (Git.config r))
|
in mapMaybe get (M.toList (Git.config r))
|
||||||
]
|
]
|
||||||
, annexAdviceNoSshCaching = getbool (annexConfig "adviceNoSshCaching") True
|
, annexAdviceNoSshCaching = getbool (annexConfig "advicenosshcaching") True
|
||||||
}
|
}
|
||||||
where
|
where
|
||||||
getbool k d = fromMaybe d $ getmaybebool k
|
getbool k d = fromMaybe d $ getmaybebool k
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue