From da822c48760241b64c032688ac2efc44332fcaf6 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Tue, 8 Oct 2019 10:30:25 -0400 Subject: [PATCH] Update magefile to build all commands without type commands --- mage.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mage.go b/mage.go index bfe9e51..d6c5a7d 100644 --- a/mage.go +++ b/mage.go @@ -26,7 +26,12 @@ func BuildAutoReact() { sh.Run("go", "build", "-tags", "autoreactcmd") } -// Build kbtui with all Commands and TypeCommands enabled. +// Build kbtui with all commands and TypeCommands disabled. func BuildAllCommands() { + sh.Run("go", "build", "-tags", "allcommands") +} + +// Build kbtui with all Commands and TypeCommands enabled. +func BuildAllCommandsT() { sh.Run("go", "build", "-tags", "type_commands,allcommands") }