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

Move exit helper func above first build target

This commit is contained in:
Sam
2019-10-21 14:59:39 -04:00
parent dbf53680e6
commit 14c7f9353a

16
mage.go
View File

@ -78,6 +78,14 @@ func getRemotePackages() error {
return nil
}
// 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 emoji lookup support
func BuildEmoji() error {
mg.Deps(getRemotePackages)
@ -100,14 +108,6 @@ func BuildEmoji() error {
return nil
}
// 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() {
mg.Deps(getRemotePackages)