Skip to content

Commit

Permalink
revel/revel#1064 windows filepath fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Jun 6, 2016
1 parent 18b9e8f commit 4b9e74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harness/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func Build(buildFlags ...string) (app *App, compileError *revel.Error) {
}

// Binary path is a combination of $GOBIN/revel.d directory, app's import path and its name.
binName := path.Join(pkg.BinDir, "revel.d", revel.ImportPath, path.Base(revel.BasePath))
binName := filepath.Join(pkg.BinDir, "revel.d", revel.ImportPath, filepath.Base(revel.BasePath))

// Change binary path for Windows build
goos := runtime.GOOS
Expand Down

0 comments on commit 4b9e74e

Please sign in to comment.