diff options
author | kitsunyan | 2018-04-29 01:09:29 +0000 |
---|---|---|
committer | kitsunyan | 2018-04-29 01:09:29 +0000 |
commit | 097b72cb39df5b4b423ff71c7f3b27ed629572b5 (patch) | |
tree | f6b3f8ef71ecad827c69f13f3f8d381b47f3ce63 /src/feature/syncinfo.nim | |
parent | 5d6e17e57a41071316dfa9a53cd23c85e85ce53e (diff) |
Use git clone for dependency resolution instead of cgit requests
Diffstat (limited to 'src/feature/syncinfo.nim')
-rw-r--r-- | src/feature/syncinfo.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/feature/syncinfo.nim b/src/feature/syncinfo.nim index 30f6f20..42d7e91 100644 --- a/src/feature/syncinfo.nim +++ b/src/feature/syncinfo.nim @@ -108,8 +108,7 @@ proc handleSyncInfo*(args: seq[Argument], config: Config): int = for e in errors: printError(config.color, e) findSyncTargets(handle, dbs, targets, false, false) - let (pkgInfos, aerrors) = getAurPackageInfo(checkAurNames, - none(seq[RpcPackageInfo]), config.arch, proc (a: int, b: int) = discard) + let (pkgInfos, _, aerrors) = getAurPackageInfos(checkAurNames, config.arch) for e in aerrors: printError(config.color, e) let fullTargets = mapAurTargets[PackageInfo](syncTargets, pkgInfos) |