mirror of https://github.com/perkeep/perkeep.git
make.go: Fix windows build.
Running genfileembed on Windows requires .exe extension. Change-Id: I34440db9c2f719c87149c16ef40a71433bf256fe
This commit is contained in:
parent
4b2acfe155
commit
0852c22aa9
2
make.go
2
make.go
|
@ -342,7 +342,7 @@ func buildSrcPath(fromSrc string) string {
|
|||
// It also populates wantDestFile with those files so they're
|
||||
// kept in between runs.
|
||||
func genEmbeds() error {
|
||||
cmdName := filepath.Join(buildGoPath, "bin", "genfileembed")
|
||||
cmdName := exeName(filepath.Join(buildGoPath, "bin", "genfileembed"))
|
||||
uiEmbeds := buildSrcPath("server/camlistored/ui")
|
||||
serverEmbeds := buildSrcPath("pkg/server")
|
||||
reactEmbeds := buildSrcPath("third_party/react")
|
||||
|
|
Loading…
Reference in New Issue