7 lines
97 B
Bash
Executable File
7 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd web_assets
|
|
go build -x .
|
|
./web_assets index.html | gofmt > ../web_assets.go
|