mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 00:15:53 +08:00
19 lines
224 B
Bash
19 lines
224 B
Bash
#代码目录
|
|
code_path=$PWD
|
|
|
|
git pull
|
|
|
|
cd ${code_path}/manager
|
|
rm -rf ./dist
|
|
yarn install
|
|
yarn build
|
|
|
|
cd ${code_path}/seller
|
|
rm -rf ./dist
|
|
yarn install
|
|
yarn build
|
|
|
|
cd ${code_path}/buyer
|
|
rm -rf ./dist
|
|
yarn install
|
|
yarn build |