aboutsummaryrefslogtreecommitdiff
path: root/src/aur.nim
diff options
context:
space:
mode:
authorkitsunyan2018-04-28 20:01:40 +0000
committerkitsunyan2018-04-28 20:01:40 +0000
commit8a3beef91b8d6baebd941d4378e6ebbd0dd70906 (patch)
tree464b885c016599563030713fc87819f46a02a477 /src/aur.nim
parent047ab2c2dbf27bf74bd3d60c0ec80e4fbcbf197e (diff)
Don't clone official packages twice
Diffstat (limited to 'src/aur.nim')
-rw-r--r--src/aur.nim2
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]())