diff options
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) |