diff options
author | kitsunyan | 2018-05-31 06:56:07 +0000 |
---|---|---|
committer | kitsunyan | 2018-05-31 06:56:07 +0000 |
commit | 6220a954ef32fec18258b4feab6494aa016764e0 (patch) | |
tree | fc03a22be13a1b46934f9a28bb1522bcc610a3a1 /src/feature/syncinfo.nim | |
parent | 5b5aa7c3968a4e36763edeb7d50b105a9248b39e (diff) |
Simplify alpm initialization
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 b0765f4..fc1510b 100644 --- a/src/feature/syncinfo.nim +++ b/src/feature/syncinfo.nim @@ -103,8 +103,7 @@ proc handleSyncInfo*(args: seq[Argument], config: Config): int = let (_, callArgs) = checkAndRefresh(config.color, args) let targets = args.packageTargets(false) - let (syncTargets, checkAurNames) = withAlpm(config.root, config.db, - config.dbs, config.arch, handle, dbs, errors): + let (syncTargets, checkAurNames) = withAlpmConfig(config, true, handle, dbs, errors): for e in errors: printError(config.color, e) findSyncTargets(handle, dbs, targets, false, false) |