mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-09 11:42:57 +00:00

Former-commit-id: a5b5143134036c1586b0ba5019b759ab5b619f73 [formerly 2f155efc9096bf9a5957427b510280ff3361a4be] [formerly a59fa5c206691cba3f99099502e0dbfda5275efb [formerly 0a2b945f905b4ac081f776bb3617ef200542e070]] Former-commit-id: e56067bd43d2fcb7c1d502c10132bd6e40e5cd63 [formerly 677e2f144205bec5db580a25549a8b935fbe4000] Former-commit-id: 3cec62950c0d7ac1ee1e9c409aa2a963cd7d91d8
9 lines
307 B
Bash
9 lines
307 B
Bash
#!/bin/sh
|
|
|
|
go get github.com/jteeuwen/go-bindata/go-bindata
|
|
go get github.com/bountylabs/gitversion
|
|
go-bindata -pkg assets -prefix "_embed" -o assets/binary.go _embed/templates/... _embed/public/js/... _embed/public/css/... _embed/public/ace/src-min/...
|
|
gitversion -s -o page/version.go -p page
|
|
|
|
git add -A
|