diff options
-rw-r--r-- | cmd/ponzu/paths.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/ponzu/paths.go b/cmd/ponzu/paths.go index 4bd4d41..0ab2b06 100644 --- a/cmd/ponzu/paths.go +++ b/cmd/ponzu/paths.go @@ -2,9 +2,9 @@ package main import "runtime" -// GetPonzuServerBuildOutputFileName returns de correct -// ponzu-server file name based on the host Operating System -func GetPonzuServerBuildOutputFileName() string { +// buildOutputName returns the correct ponzu-server file name +// based on the host Operating System +func buildOutputName() string { if runtime.GOOS == "windows" { return "ponzu-server.exe" } |