Skip to content

Commit

Permalink
fix travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
maxence-charriere committed Aug 27, 2018
1 parent 7e5f0d7 commit b713f5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/goapp/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ func buildWeb(ctx context.Context, args []string) {
root := roots[0]

if err := goBuild(root); err != nil {
printErr("go build:", err)
printErr("go build failed: %s", err)
return
}

if err := gopherJSBuild(root, config.Minify); err != nil {
printErr("gopherjs build:", err)
printErr("gopherjs build failed: %s", err)
return
}

Expand Down

0 comments on commit b713f5b

Please sign in to comment.