mirror of https://github.com/Rudi9719/kbtui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.7 KiB
76 lines
1.7 KiB
// +build mage |
|
|
|
package main |
|
|
|
import ( |
|
"fmt" |
|
"github.com/magefile/mage/sh" |
|
"os" |
|
) |
|
|
|
// proper error reporting and exit code |
|
func exit(err error) { |
|
if err != nil { |
|
fmt.Fprintf(os.Stderr, "%+v\n", err) |
|
os.Exit(1) |
|
} |
|
} |
|
|
|
// Build kbtui with just the basic commands. |
|
func Build() { |
|
if err := sh.Run("go", "build"); err != nil { |
|
defer func() { |
|
exit(err) |
|
}() |
|
} |
|
} |
|
|
|
// Build kbtui with the basic commands, and the ShowReactions "TypeCommand". |
|
// The ShowReactions TypeCommand will print a message in the feed window when |
|
// a reaction is received in the current conversation. |
|
func BuildShowReactions() { |
|
if err := sh.Run("go", "build", "-tags", "showreactionscmd"); err != nil { |
|
defer func() { |
|
exit(err) |
|
}() |
|
} |
|
} |
|
|
|
// Build kbtui with the basec commands, and the AutoReact "TypeCommand". |
|
// The AutoReact TypeCommand will automatically react to every message |
|
// received in the current conversation. This gets pretty annoying, and |
|
// is not recommended. |
|
func BuildAutoReact() { |
|
if err := sh.Run("go", "build", "-tags", "autoreactcmd"); err != nil { |
|
defer func() { |
|
exit(err) |
|
}() |
|
} |
|
} |
|
|
|
// Build kbtui with all commands and TypeCommands disabled. |
|
func BuildAllCommands() { |
|
if err := sh.Run("go", "build", "-tags", "allcommands"); err != nil { |
|
defer func() { |
|
exit(err) |
|
}() |
|
} |
|
} |
|
|
|
// Build kbtui with all Commands and TypeCommands enabled. |
|
func BuildAllCommandsT() { |
|
if err := sh.Run("go", "build", "-tags", "type_commands,allcommands"); err != nil { |
|
defer func() { |
|
exit(err) |
|
}() |
|
} |
|
} |
|
|
|
// Build kbtui with beta functionality |
|
func BuildBeta() { |
|
if err := sh.Run("go", "build", "-tags", "allcommands,showreactionscmd,tabcompletion"); err != nil { |
|
defer func() { |
|
exit(err) |
|
}() |
|
} |
|
}
|
|
|