doc: Bug fix: Invalid arg for gopherjs

This commit is contained in:
Hajime Hoshi 2016-08-28 03:52:00 +09:00
parent 03456332bf
commit df9d88c729

View File

@ -300,7 +300,7 @@ func outputExampleContent(e *example) error {
out := filepath.Join(dir, e.Name+".js")
path := "github.com/hajimehoshi/ebiten/examples/" + e.Name
if err := execute("gopherjs", "build", "-tags", "example", "-m", "-o", out, path); err != nil {
if err := execute("gopherjs", "build", "--tags", "example", "-m", "-o", out, path); err != nil {
return err
}