From 0f4768b4fe745af056e0ae657938d10d27333dbd Mon Sep 17 00:00:00 2001 From: morganamilo Date: Tue, 9 Oct 2018 16:13:40 +0100 Subject: [PATCH] Allow --print again Comit 2d6fe95903ac118811d8f24a5fb3361de09e0114 renamed the Yay specific flag -P/--print to -P/--show. The rename caused --print to stop being accepted as it was no longer in the list of accepted args. --- parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.go b/parser.go index 37f24384..91545719 100644 --- a/parser.go +++ b/parser.go @@ -381,7 +381,7 @@ func isArg(arg string) bool { case "dbonly": case "noprogressbar": case "noscriptlet": - case "p": + case "p", "print": case "print-format": case "asdeps": case "asexplicit":