Only run compiled binary if same platform (fixes #20)

This commit is contained in:
Matthew Holt 2020-05-26 16:42:56 -06:00
parent 23d4e0a1ca
commit 823a072ae1
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5

View file

@ -123,17 +123,19 @@ func runBuild(ctx context.Context, args []string) error {
}
// prove the build is working by printing the version
if !filepath.IsAbs(output) {
output = "." + string(filepath.Separator) + output
}
fmt.Println()
fmt.Printf("%s version\n", output)
cmd := exec.Command(output, "version")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
log.Fatalf("[FATAL] %v", err)
if runtime.GOOS == os.Getenv("GOOS") && runtime.GOARCH == os.Getenv("GOARCH") {
if !filepath.IsAbs(output) {
output = "." + string(filepath.Separator) + output
}
fmt.Println()
fmt.Printf("%s version\n", output)
cmd := exec.Command(output, "version")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
log.Fatalf("[FATAL] %v", err)
}
}
return nil