diff options
author | kitsunyan | 2018-04-28 20:01:40 +0000 |
---|---|---|
committer | kitsunyan | 2018-04-28 20:01:40 +0000 |
commit | 8a3beef91b8d6baebd941d4378e6ebbd0dd70906 (patch) | |
tree | 464b885c016599563030713fc87819f46a02a477 /src/aur.nim | |
parent | 047ab2c2dbf27bf74bd3d60c0ec80e4fbcbf197e (diff) |
Don't clone official packages twice
Diffstat (limited to 'src/aur.nim')
-rw-r--r-- | src/aur.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aur.nim b/src/aur.nim index 837dea7..60df9e0 100644 --- a/src/aur.nim +++ b/src/aur.nim @@ -106,7 +106,7 @@ proc getAurPackageInfo*(pkgs: seq[string], rpcInfosOption: Option[seq[RpcPackage (@[], operror) else: let pkgInfos = parseSrcInfo("aur", srcInfo, arch, - aurUrl & base & ".git", none(string), none(string), none(string), rpcInfos) + aurUrl & base & ".git", none(string), rpcInfos) (pkgInfos, none(string)) let parsed = deduplicated.foldl(a & obtainAndParse(b, a.len), newSeq[ParseResult]()) |