diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | build | 2 | ||||
-rw-r--r-- | server.go | 2 |
3 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,4 @@ fonts/ +done/ out/ server @@ -413,3 +413,5 @@ wait find out -name '*.html' -and -not -name 'index.html' -delete rm data/tmp-data.?? + +cp -r out done @@ -90,7 +90,7 @@ func main() { url = "http://localhost:4729/" } - if err := os.Chdir("out"); err != nil { + if err := os.Chdir("done"); err != nil { panic(err) } http.HandleFunc("/", router) |