Authored by chunhua.zhang

no message

... ... @@ -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")
call("rm", "-rf ~/.tmp/auto_deploy")
call("git", "clone --recursive git@git.yoho.cn:yohoops/auto_deploy.git ~/.tmp/")
... ...