summaryrefslogtreecommitdiff
path: root/cmd/ponzu/paths.go
blob: 8bc6e397aa13051632d6d4f5ba8c9d298bd88779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

import "runtime"

// 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"
	}

	return "ponzu-server"
}