aboutsummaryrefslogtreecommitdiff
path: root/src/config.nim
diff options
context:
space:
mode:
authorGavin Lloyd2019-02-07 06:09:31 +0000
committerGavin Lloyd2019-02-07 06:09:31 +0000
commit1f6a5c6188a80bab511f56cb36eae824765c89d6 (patch)
treec37e5254a55070ad89be19edd045f536ce7c03d7 /src/config.nim
parentfbb01f7d7c5d3b9830b2cb30b60302711f9e278e (diff)
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.
Diffstat (limited to 'src/config.nim')
-rw-r--r--src/config.nim6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/config.nim b/src/config.nim
index 699f12a..fb1f3ae 100644
--- a/src/config.nim
+++ b/src/config.nim
@@ -47,6 +47,7 @@ type
checkIgnored*: bool
ignoreArch*: bool
printAurNotFound*: bool
+ printLocalIsNewer*: bool
sudoExec*: bool
viewNoDefault*: bool
preserveBuilt*: PreserveBuilt
@@ -155,6 +156,7 @@ proc obtainConfig*(config: PacmanConfig): Config =
let checkIgnored = options.hasKey("CheckIgnored")
let ignoreArch = options.hasKey("IgnoreArch")
let printAurNotFound = options.hasKey("PrintAurNotFound")
+ let printLocalIsNewer = options.hasKey("PrintLocalIsNewer")
let sudoExec = options.hasKey("SudoExec")
let viewNoDefault = options.hasKey("ViewNoDefault")
let preserveBuilt = toSeq(enumerate[PreserveBuilt]())
@@ -179,8 +181,8 @@ proc obtainConfig*(config: PacmanConfig): Config =
userCacheCurrent: userCacheCurrent, tmpRootInitial: tmpRootInitial,
tmpRootCurrent: tmpRootCurrent, color: color, aurRepo: aurRepo, aurComments: aurComments,
checkIgnored: checkIgnored, ignoreArch: ignoreArch, printAurNotFound: printAurNotFound,
- sudoExec: sudoExec, viewNoDefault: viewNoDefault, preserveBuilt: preserveBuilt,
- preBuildCommand: preBuildCommand)
+ printLocalIsNewer: printLocalIsNewer, sudoExec: sudoExec, viewNoDefault: viewNoDefault,
+ preserveBuilt: preserveBuilt, preBuildCommand: preBuildCommand)
template withAlpmConfig*(config: Config, passDbs: bool,
handle: untyped, alpmDbs: untyped, errors: untyped, body: untyped): untyped =