Skip to content

Commit 2af2c24

Browse files
committed
Fix invocation of RepoTool.bootstrapOrUpdate
1 parent 03c7683 commit 2af2c24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: app/Foliage/RepoToolWrapper.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ updateRepo :: FilePath -> FilePath -> IO ()
1616
updateRepo keysDir repoDir = do
1717
keysLoc <- KeysLoc <$> makeAbsolute (fromFilePath keysDir)
1818
repoLoc <- RepoLoc <$> makeAbsolute (fromFilePath repoDir)
19-
RepoTool.bootstrapOrUpdate (globalOpts $ Update keysLoc repoLoc) keysLoc repoLoc True
19+
RepoTool.bootstrapOrUpdate (globalOpts $ Update keysLoc repoLoc) keysLoc repoLoc False
2020

2121
bootstrapRepo :: FilePath -> FilePath -> IO ()
2222
bootstrapRepo keysDir repoDir = do
2323
keysLoc <- KeysLoc <$> makeAbsolute (fromFilePath keysDir)
2424
repoLoc <- RepoLoc <$> makeAbsolute (fromFilePath repoDir)
25-
RepoTool.bootstrapOrUpdate (globalOpts $ Bootstrap keysLoc repoLoc) keysLoc repoLoc False
25+
RepoTool.bootstrapOrUpdate (globalOpts $ Bootstrap keysLoc repoLoc) keysLoc repoLoc True
2626

2727
createKeys :: FilePath -> IO ()
2828
createKeys keysDir = do

0 commit comments

Comments
 (0)