Skip to content

Commit 58f4d81

Browse files
author
guowangyang
committed
update
1 parent ce98217 commit 58f4d81

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

build.sh deploy.sh

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,18 @@ getHostInfo hostPwd
1313

1414

1515
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 ./*
1717

1818

19+
if [[ $hostName =~ "155.199" ]];then
20+
targetDir=/root/ft_local
21+
else
22+
targetDir=/root/guowangyang/ft_local
23+
fi
24+
1925
expect -c "
2026
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
2228
expect {
2329
\"*yes/no*\" {send \"yes\r\"; exp_continue}
2430
\"*password*\" {send \"$hostPwd\r\";}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"start": "node src/index.js",
8-
"build": "sh build.sh"
8+
"deploy": "sh deploy.sh"
99
},
1010
"author": "",
1111
"license": "ISC",
@@ -15,4 +15,4 @@
1515
"dependencies": {
1616
"execa": "^5.1.1"
1717
}
18-
}
18+
}

src/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ const execa = require('execa');
55
// const WATCH_PATH = path.resolve(__dirname, '../temp');
66
// const DEPLOY_PATH = path.resolve(__dirname, '../temp2');
77

8+
const IS_GROUP = true;
89

910
// 监听目录
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+
1113
// 项目部署目录
12-
const DEPLOY_PATH = '/root/deploy-dir';
14+
const DEPLOY_PATH = IS_GROUP ? '/root/guowangyang/deploy-dir' : '/root/deploy-dir';
1315

1416
const fileStatMap = new Map()
1517

0 commit comments

Comments
 (0)