Added annex.web-download-command setting.
This commit is contained in:
parent
1c36af163c
commit
d440b6047b
4 changed files with 28 additions and 5 deletions
|
@ -36,6 +36,7 @@ data GitConfig = GitConfig
|
|||
, annexHttpHeadersCommand :: Maybe String
|
||||
, annexAutoCommit :: Bool
|
||||
, annexWebOptions :: [String]
|
||||
, annexWebDownloadCommand :: Maybe String
|
||||
, annexCrippledFileSystem :: Bool
|
||||
, annexLargeFiles :: Maybe String
|
||||
, coreSymlinks :: Bool
|
||||
|
@ -59,6 +60,7 @@ extractGitConfig r = GitConfig
|
|||
, annexHttpHeadersCommand = getmaybe (annex "http-headers-command")
|
||||
, annexAutoCommit = getbool (annex "autocommit") True
|
||||
, annexWebOptions = getwords (annex "web-options")
|
||||
, annexWebDownloadCommand = getmaybe (annex "web-download-command")
|
||||
, annexCrippledFileSystem = getbool (annex "crippledfilesystem") False
|
||||
, annexLargeFiles = getmaybe (annex "largefiles")
|
||||
, coreSymlinks = getbool "core.symlinks" True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue