Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,12 @@ func doBuild(args []string) {
goArgs = mapToTmpDir(tmpDir, goArgs)
}

bin := filepath.Base(strings.TrimSuffix(goArgs[0], ".go")) + ".debug"
exeSuffix := ""

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about binSuffix so that we can leave the code open to other executable binary file extensions that go may produce in the future?

if conf.Build.GOOS == "windows" {
exeSuffix = ".exe"
}

bin := filepath.Base(strings.TrimSuffix(goArgs[0], ".go")) + ".debug" + exeSuffix
if *o != "" {
bin = *o
}
Expand Down