1
Fork 0
This commit is contained in:
Jake Howard 2015-12-06 20:49:58 +00:00
parent 5ce14bee2c
commit ee870e2d12
2 changed files with 9 additions and 6 deletions

View File

@ -15,14 +15,14 @@ def clone_public_data():
out, error = shell.call(
"git clone -b master --single-branch {} {}".format(
config.get('public_repo'),
constants.PUBLIC_DATA_DIR)
config.get('public_repo'),
constants.PUBLIC_DATA_DIR
)
)
return error
def clone_private_data():
exit_code = 0
if os.path.isdir(constants.PRIVATE_DATA_DIR):
initial = os.getcwd()
os.chdir(constants.PRIVATE_DATA_DIR)
@ -33,9 +33,10 @@ def clone_private_data():
return error
else:
out, error = shell.call(
"git clone -b master --single-branch {} {}".format(
config.get('private_repo'),
constants.PRIVATE_DATA_DIR)
"git clone -b master --single-branch {} {}".format(
config.get('private_repo'),
constants.PRIVATE_DATA_DIR
)
)
if error:
return error
@ -58,6 +59,7 @@ def go_to_data(subdir=''):
os.chdir(path)
return path
def clean():
shutil.rmtree(constants.PUBLIC_DATA_DIR)
shutil.rmtree(constants.PRIVATE_DATA_DIR)

View File

@ -1,5 +1,6 @@
import subprocess
def call(command):
shell = subprocess.Popen(command, stdout=subprocess.PIPE, shell=True)
output, error = shell.communicate()