From cae7510efdfc104c2573dab156c4e8aa2590718e Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Tue, 8 Oct 2019 10:16:40 -0400 Subject: [PATCH] Updated mage allcommands to actually build all commands --- mage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mage.go b/mage.go index 2051aea..bfe9e51 100644 --- a/mage.go +++ b/mage.go @@ -28,5 +28,5 @@ func BuildAutoReact() { // Build kbtui with all Commands and TypeCommands enabled. func BuildAllCommands() { - sh.Run("go", "build", "-tags", "type_commands") + sh.Run("go", "build", "-tags", "type_commands,allcommands") }