Files
huike-front/cp_dist_local_macos.sh
T

16 lines
258 B
Bash
Raw Normal View History

#!/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