From 0c866e24c48f34c03f32c5760e3ebc0642ac84eb Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Fri, 25 Oct 2019 14:45:53 -0400 Subject: [PATCH] Go build tags are space separated. --- mage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mage.go b/mage.go index 5a4e11e..bdfba32 100644 --- a/mage.go +++ b/mage.go @@ -157,7 +157,7 @@ func BuildAllCommands() { // Build kbtui with all Commands and TypeCommands enabled. func BuildAllCommandsT() { mg.Deps(getRemotePackages) - if err := sh.Run("go", "build", "-tags", "type_commands,allcommands"); err != nil { + if err := sh.Run("go", "build", "-tags", "type_commands allcommands"); err != nil { defer func() { exit(err) }() @@ -168,7 +168,7 @@ func BuildAllCommandsT() { func BuildBeta() { mg.Deps(getRemotePackages) mg.Deps(BuildEmoji) - if err := sh.Run("go", "build", "-tags", "allcommands,showreactionscmd,emojiList,tabcompletion"); err != nil { + if err := sh.Run("go", "build", "-tags", "allcommands showreactionscmd emojiList tabcompletion"); err != nil { defer func() { exit(err) }()