From 8a2ec77c8463376294654899f70c5704a3005dc9 Mon Sep 17 00:00:00 2001 From: paulGao Date: Tue, 10 May 2022 15:57:30 +0800 Subject: [PATCH] add build.sh --- build.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..bd6b5059 --- /dev/null +++ b/build.sh @@ -0,0 +1,20 @@ +#代码目录 +code_path=$PWD + +git checkout master +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 \ No newline at end of file