16 lines
258 B
Bash
16 lines
258 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -x
|
||
|
|
|
||
|
|
git restore .
|
||
|
|
git fetch origin
|
||
|
|
git rebase origin/master
|
||
|
|
|
||
|
|
openresty_html_dir='/usr/local/opt/openresty/nginx/html/music-room'
|
||
|
|
|
||
|
|
mkdir -p $openresty_html_dir
|
||
|
|
|
||
|
|
rm -rf node_modules && yarn
|
||
|
|
npm run build:local
|
||
|
|
|
||
|
|
cp -r ./dist/* $openresty_html_dir
|