1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 11:07:22 +00:00

Update magefile to build all commands without type commands

This commit is contained in:
Gregory Rudolph
2019-10-08 10:30:25 -04:00
parent cae7510efd
commit da822c4876

View File

@ -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")
}