mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
grunt build
|
|
|
|
git clean -x -f dashboard/dist
|
|
|
|
for i in `find dashboard/dist -type f`; do
|
|
go build github.com/jteeuwen/go-bindata
|
|
./go-bindata -pkg "dist" -toc -prefix dashboard/dist $i
|
|
done
|