diff options
author | Steve <nilslice@gmail.com> | 2017-02-21 18:02:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-21 18:02:24 -0800 |
commit | 3c7327058bd2ee890d36809fd171f1477e0ebfe5 (patch) | |
tree | 9ed6e440588d9c82a110d0b7ca8237539f3d0741 /cmd/ponzu/main.go | |
parent | 39e0708be1b57b5527f4c79708b25067ba50f86e (diff) | |
parent | fbce00a0b19628abd2d0c8b50c1cfa6b87cee3ce (diff) |
Merge pull request #78 from Sirikon/ponzu-dev
Fix Windows build & run
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r-- | cmd/ponzu/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index d064569..6c52e01 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -146,7 +146,7 @@ func main() { services = "admin,api" } - serve := exec.Command("./ponzu-server", + serve := exec.Command(buildOutputName(), fmt.Sprintf("--port=%d", port), fmt.Sprintf("--httpsport=%d", httpsport), addTLS, |