File tree 3 files changed +14
-6
lines changed
3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,18 @@ getHostInfo hostPwd
13
13
14
14
15
15
rm -rf ./$tarFileName
16
- tar --exclude=node_modules/ --exclude=test/ --exclude=output/ --exclude=build .sh -zcvf $tarFileName ./*
16
+ tar --exclude=node_modules/ --exclude=test/ --exclude=output/ --exclude=deploy .sh -zcvf $tarFileName ./*
17
17
18
18
19
+ if [[ $hostName =~ " 155.199" ]]; then
20
+ targetDir=/root/ft_local
21
+ else
22
+ targetDir=/root/guowangyang/ft_local
23
+ fi
24
+
19
25
expect -c "
20
26
set timeout 1200;
21
- spawn scp -P 36000 -r $tarFileName root@$hostName :/root/ft_local
27
+ spawn scp -P 36000 -r $tarFileName root@$hostName :$targetDir
22
28
expect {
23
29
\" *yes/no*\" {send \" yes\r\" ; exp_continue}
24
30
\" *password*\" {send \" $hostPwd \r\" ;}
Original file line number Diff line number Diff line change 5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
7
"start" : " node src/index.js" ,
8
- "build " : " sh build .sh"
8
+ "deploy " : " sh deploy .sh"
9
9
},
10
10
"author" : " " ,
11
11
"license" : " ISC" ,
15
15
"dependencies" : {
16
16
"execa" : " ^5.1.1"
17
17
}
18
- }
18
+ }
Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ const execa = require('execa');
5
5
// const WATCH_PATH = path.resolve(__dirname, '../temp');
6
6
// const DEPLOY_PATH = path.resolve(__dirname, '../temp2');
7
7
8
+ const IS_GROUP = true ;
8
9
9
10
// 监听目录
10
- const WATCH_PATH = '/root/watch-to-deploy-dir' ;
11
+ const WATCH_PATH = IS_GROUP ? '/root/guowangyang/watch-to-deploy-dir' : '/root/watch-to-deploy-dir' ;
12
+
11
13
// 项目部署目录
12
- const DEPLOY_PATH = '/root/deploy-dir' ;
14
+ const DEPLOY_PATH = IS_GROUP ? '/root/guowangyang/deploy-dir' : '/root/deploy-dir' ;
13
15
14
16
const fileStatMap = new Map ( )
15
17
You can’t perform that action at this time.
0 commit comments