I have tried generating the static gobyexample with this repo but I get this error
./tools/build
sed: can't read : No such file or directory
So I skipped the build script as it is only this
#!/bin/bash
set -e
tools/format
tools/measure
tools/generate
and I performed
./tools/measure && ./tools/generate
from repository's root and I received the generated files in public/ but without the .html suffixes (and therefore browsers try to download those files instead of parsing and displaying them).
I have tried generating the static gobyexample with this repo but I get this error
So I skipped the build script as it is only this
and I performed
from repository's root and I received the generated files in
public/but without the.htmlsuffixes (and therefore browsers try to download those files instead of parsing and displaying them).So I performed this small patch:
and now it works. Don't you guys have this problem? Am I doing something wrong?