diff options
author | Steve <nilslice@gmail.com> | 2017-02-22 14:11:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 14:11:49 -0800 |
commit | 5a12ad85178b8ccf5d57b6eefbc36e5683e793a7 (patch) | |
tree | ebb88b516836484299f47a795d6f5b3eec83fe06 /cmd/ponzu/paths.go | |
parent | c0448ebb1157210ae7d36ddf6f49e4c44f914dd5 (diff) | |
parent | 9f79e23cf87a6192b6a8a490cef4b7bf7971cbc6 (diff) |
Merge pull request #83 from Sirikon/ponzu-dev
Fix #81
Diffstat (limited to 'cmd/ponzu/paths.go')
-rw-r--r-- | cmd/ponzu/paths.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cmd/ponzu/paths.go b/cmd/ponzu/paths.go index 73d8d73..8bc6e39 100644 --- a/cmd/ponzu/paths.go +++ b/cmd/ponzu/paths.go @@ -11,14 +11,3 @@ func buildOutputName() string { return "ponzu-server" } - -// buildOutputPath returns the correct path to the ponzu-server binary -// built, based on the host Operating System. This is necessary so that -// the UNIX-y systems know to look in the current directory, and not the $PATH -func buildOutputPath() string { - if runtime.GOOS == "windows" { - return "" - } - - return "." -} |