cronsun/web/gen_bindata.sh

10 lines
257 B
Bash
Raw Normal View History

2017-08-30 06:56:50 +00:00
#!/bin/sh
2018-03-09 07:25:10 +00:00
BASEDIR=$(dirname $(realpath $0))
2017-12-20 02:50:21 +00:00
cd $BASEDIR/ui
2017-08-30 06:56:50 +00:00
npm run build
cd ..
go-bindata -pkg "web" -prefix "ui/dist/" -o static_assets.go ./ui/dist/
2018-03-09 07:25:10 +00:00
VER=$(git rev-parse --short HEAD)
sed -i '' -E "s/(build\.js\?v=).{7}/\1${VER}/g" $BASEDIR/ui/index.html