about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index e1ed076..428946f 100644
--- a/main.go
+++ b/main.go
@@ -210,7 +210,7 @@ func build(ctx context.Context, platform Platform, pkg string) error {
 	err := cmd.Run()
 
 	if err != nil {
-		log.Printf("fatal: There was an error! err='%s' stdout='%s' stderr='%s'", err, stdout.String(), stderr.String())
+		log.Printf("fatal: There was an error! goos='%s' goarch='%s' err='%s' stdout='%s' stderr='%s'", platform.OS, platform.Arch, err, stdout.String(), stderr.String())
 	}
 
 	return err