Showing
1 changed file
with
3 additions
and
3 deletions
@@ -10,9 +10,9 @@ import json | @@ -10,9 +10,9 @@ import json | ||
10 | 10 | ||
11 | from subprocess import call | 11 | from subprocess import call |
12 | 12 | ||
13 | -call("mkdir -p ~/.tmp") | ||
14 | -call("rm -rf ~/.tmp/auto_deploy") | ||
15 | -call("git clone --recursive git@git.yoho.cn:yohoops/auto_deploy.git", "~/.tmp/") | 13 | +call("mkdir", "-p ~/.tmp") |
14 | +call("rm", "-rf ~/.tmp/auto_deploy") | ||
15 | +call("git", "clone --recursive git@git.yoho.cn:yohoops/auto_deploy.git ~/.tmp/") | ||
16 | 16 | ||
17 | 17 | ||
18 | 18 |
-
Please register or login to post a comment