blob: 55a01df3c06cfa1b555911467711591a8917f1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
cd $(dirname $0)
cd ..
rm -r web/lib
npm install --unsafe-perm
npm run build
cd modern
rm -r ../web/modern
npm install --force
npm run build_release
mv build ../web/modern
|