diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-06-09 00:53:42 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-06-09 00:53:49 +0200 |
commit | 2af0cc20186221fedbde36668df05773df50ee9d (patch) | |
tree | 4cfdff6b3603d316d40535b25be1d881f36dba94 | |
parent | decc12d8893a7e5ac00dcd3671ae8bd918e9bfc8 (diff) |
Add a done folder
-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) |