From eea82fb8eede692b7987b7e5dad44977bafb69fc Mon Sep 17 00:00:00 2001 From: Jguer Date: Fri, 23 Jun 2017 09:19:18 +0100 Subject: [PATCH] Added missing flag to timeupdate --- yay.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/yay.go b/yay.go index dd408c41..c1e5e136 100644 --- a/yay.go +++ b/yay.go @@ -70,8 +70,10 @@ func parser() (op string, options []string, packages []string, changedConfig boo config.YayConf.Devel = true case "--nodevel": config.YayConf.Devel = false - case "--timeupdates": + case "--timeupdate": config.YayConf.TimeUpdate = true + case "--notimeupdate": + config.YayConf.TimeUpdate = false case "--topdown": config.YayConf.SortMode = config.TopDown case "--complete":