Skip to content

Commit

Permalink
app -> go-app (#346)
Browse files Browse the repository at this point in the history
Fix logo.png file path errors
  • Loading branch information
a4913994 committed Feb 27, 2020
1 parent 72e7440 commit 54956a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/goapp/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func generateEtag(etag, webDir string) error {
func generateProgressiveAppIcons(c buildConfig) error {
iconname := filepath.Join(c.webDir, "icon.png")
if _, err := os.Stat(iconname); err != nil {
iconname = filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "maxence-charriere", "app", "logo.png")
iconname = filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "maxence-charriere", "go-app", "logo.png")
}

return generateIcons(iconname,
Expand Down

0 comments on commit 54956a8

Please sign in to comment.