Dan Buch
f86855d22d
mostly to ease editing, but also for practice with file manipulation, gzipping, base64'ing, etc.
7 lines
94 B
Bash
Executable File
7 lines
94 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd web_assets
|
|
go build .
|
|
./web_assets index.html | gofmt > ../web_assets.go
|