mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
7f95e5e6de
revisioning on footer was wrong because it would always have one revision less. From now on, it is the user's responsability to know when he have downloaded caddy (if downloaded from caddyserver.com) OR to know which revision he is in (if he built from source).
10 lines
308 B
Bash
10 lines
308 B
Bash
#!/bin/sh
|
|
|
|
go get github.com/jteeuwen/go-bindata/go-bindata
|
|
|
|
go-bindata -pkg assets -prefix "_embed" \
|
|
-o assets/binary.go -ignore "^.*theme-([^g]|g[^i]|gi[^t]|git[^h]|gith[^u]|githu[^b]).*\.js$" \
|
|
_embed/templates/... _embed/public/js/... _embed/public/css/... _embed/public/ace/src-min/...
|
|
|
|
git add -A
|