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/syncsource.nim | |
parent | 5b5aa7c3968a4e36763edeb7d50b105a9248b39e (diff) |
Simplify alpm initialization
Diffstat (limited to 'src/feature/syncsource.nim')
-rw-r--r-- | src/feature/syncsource.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/feature/syncsource.nim b/src/feature/syncsource.nim index 2bc88ee..8096f02 100644 --- a/src/feature/syncsource.nim +++ b/src/feature/syncsource.nim @@ -162,8 +162,7 @@ proc handleSyncSource*(args: seq[Argument], config: Config): int = printError(config.color, trp("no targets specified (use -h for help)\n")) 1 else: - 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) |