Skip to content

Commit 79fc905

Browse files
committed
debug: log target os
1 parent 2fc455d commit 79fc905

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

internal/cmd/buildtool/desktop.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package main
22

33
import (
4+
"fmt"
45
"path/filepath"
56
"runtime"
67

@@ -47,6 +48,8 @@ func desktopBuildOomobile(deps buildtoolmodel.Dependencies, targetOs string) {
4748
}
4849
config.envp.Append("GOOS", targetOs)
4950

51+
fmt.Println(targetOs)
52+
5053
// NOTE: we only support windows builds on amd64 for now
5154
if targetOs == "windows" {
5255
log.Infof("detected GOOS: %s, setting target as amd64", runtime.GOOS)

0 commit comments

Comments
 (0)