142c802a70
plus some other minor visual cleanups to web game.
9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd web_assets
|
|
go build -x .
|
|
./web_assets index.html > _tmp.go
|
|
gofmt < _tmp.go > ../web_assets.go
|
|
rm -vf _tmp.go
|