Authored by chunhua.zhang

add

... ... @@ -10,9 +10,9 @@ import json
from subprocess import call
call("mkdir", "-p ~/.tmp")
call("rm", "-rf ~/.tmp/auto_deploy")
call("git", "clone --recursive git@git.yoho.cn:yohoops/auto_deploy.git ~/.tmp/")
call("mkdir -p ~/.tmp", shell=True)
call("rm -rf ~/.tmp/auto_deploy", shell=True)
call("git clone --recursive git@git.yoho.cn:yohoops/auto_deploy.git ~/.tmp/", shell=True)
... ...