diff options
Diffstat (limited to 'Remote/Glacier.hs')
-rw-r--r-- | Remote/Glacier.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Remote/Glacier.hs b/Remote/Glacier.hs index 05cdf8978..04b70e2f1 100644 --- a/Remote/Glacier.hs +++ b/Remote/Glacier.hs @@ -37,8 +37,8 @@ remote = RemoteType { setup = glacierSetup } -gen :: Git.Repo -> UUID -> RemoteConfig -> Annex Remote -gen r u c = new <$> remoteCost r veryExpensiveRemoteCost +gen :: Git.Repo -> UUID -> RemoteConfig -> RemoteGitConfig -> Annex Remote +gen r u c gc = new <$> remoteCost gc veryExpensiveRemoteCost where new cst = encryptableRemote c (storeEncrypted this) @@ -58,6 +58,7 @@ gen r u c = new <$> remoteCost r veryExpensiveRemoteCost whereisKey = Nothing, config = c, repo = r, + gitconfig = gc, localpath = Nothing, readonly = False, remotetype = remote |