summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/Sync.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Sync.hs b/Command/Sync.hs
index 81b77e5cc..d8eb0fc39 100644
--- a/Command/Sync.hs
+++ b/Command/Sync.hs
@@ -54,12 +54,12 @@ syncRemotes rs = do
else wanted
where
wanted
- | null rs = filterM hasurl =<< Remote.remoteList
+ | null rs = filterM hasurl =<< Remote.enabledRemoteList
| otherwise = listed
listed = mapM Remote.byName rs
hasurl r = not . null <$> geturl r
geturl r = fromRepo $ Git.Config.get ("remote." ++ Remote.name r ++ ".url") ""
- pickfast = (++) <$> listed <*> (fastest <$> Remote.remoteList)
+ pickfast = (++) <$> listed <*> (fastest <$> Remote.enabledRemoteList)
fastest = fromMaybe [] . headMaybe .
map snd . sort . M.toList . costmap
costmap = M.fromListWith (++) . map costpair