s3_config should be in lib.config

This commit is contained in:
Cheng Zhao 2015-04-12 12:00:02 +08:00
parent aa835ad38a
commit 6b1dd0d413
6 changed files with 19 additions and 17 deletions

View file

@ -47,6 +47,17 @@ def get_target_arch():
return 'x64'
def s3_config():
config = (os.environ.get('ATOM_SHELL_S3_BUCKET', ''),
os.environ.get('ATOM_SHELL_S3_ACCESS_KEY', ''),
os.environ.get('ATOM_SHELL_S3_SECRET_KEY', ''))
message = ('Error: Please set the $ATOM_SHELL_S3_BUCKET, '
'$ATOM_SHELL_S3_ACCESS_KEY, and '
'$ATOM_SHELL_S3_SECRET_KEY environment variables')
assert all(len(c) for c in config), message
return config
def enable_verbose_mode():
print 'Running in verbose mode'
global verbose_mode