allow annex.expireunused to be set to false, as well as to a duration
This commit is contained in:
parent
ee5bb374bb
commit
489972c035
2 changed files with 5 additions and 3 deletions
|
@ -47,7 +47,7 @@ data GitConfig = GitConfig
|
|||
, annexLargeFiles :: Maybe String
|
||||
, annexFsckNudge :: Bool
|
||||
, annexAutoUpgrade :: AutoUpgrade
|
||||
, annexExpireUnused :: Maybe Duration
|
||||
, annexExpireUnused :: Maybe (Maybe Duration)
|
||||
, coreSymlinks :: Bool
|
||||
, gcryptId :: Maybe String
|
||||
}
|
||||
|
@ -77,7 +77,8 @@ extractGitConfig r = GitConfig
|
|||
, annexLargeFiles = getmaybe (annex "largefiles")
|
||||
, annexFsckNudge = getbool (annex "fscknudge") True
|
||||
, annexAutoUpgrade = toAutoUpgrade $ getmaybe (annex "autoupgrade")
|
||||
, annexExpireUnused = parseDuration =<< getmaybe (annex "expireunused")
|
||||
, annexExpireUnused = maybe Nothing Just . parseDuration
|
||||
<$> getmaybe (annex "expireunused")
|
||||
, coreSymlinks = getbool "core.symlinks" True
|
||||
, gcryptId = getmaybe "core.gcrypt-id"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue