mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00

Former-commit-id: e4e5c6469832a146c96ef0a3491e8d92b9a9814d [formerly 2dc8ac05e78ebef3735b54ef21a1a983f9fbb879] [formerly a02a19981511390ca1b3934ab65174138c7dad7a [formerly 9d19467ad5ad4fc5bfe711be5abe265eae0a38bc]] Former-commit-id: 1b114aac29a96fe6374dc7dcc3eb21422155e1fb [formerly bd9ae2edd12367ae7e8e47903db74fe325095367] Former-commit-id: 8344bd33d1878a08d1f66881729a93a31e8baa80
10 lines
311 B
Bash
10 lines
311 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
|