From 1f6a5c6188a80bab511f56cb36eae824765c89d6 Mon Sep 17 00:00:00 2001 From: Gavin Lloyd Date: Wed, 6 Feb 2019 22:09:31 -0800 Subject: Add 'PrintLocalIsNewer' config option Print warnings during upgrade operation when local packages are newer than those found in remote repositories. This was previously a default option, now added as a default config option in pakku.conf. --- src/feature/syncinstall.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/feature') diff --git a/src/feature/syncinstall.nim b/src/feature/syncinstall.nim index cd9240c..a5e9883 100644 --- a/src/feature/syncinstall.nim +++ b/src/feature/syncinstall.nim @@ -844,7 +844,7 @@ proc printAllWarnings(config: Config, installed: seq[Installed], rpcInfos: seq[R not rpcInfoTable.hasKey(inst.name): printWarning(config.color, tr"$# was not found in AUR" % [inst.name]) - if upgradeCount == 1: + if upgradeCount == 1 and config.printLocalIsNewer: for localIsNewer in localIsNewerSeq: printWarning(config.color, tra("%s: local (%s) is newer than %s (%s)\n") % [localIsNewer.name, localIsNewer.version, config.aurRepo, localIsNewer.aurVersion]) -- cgit v1.2.3-70-g09d2