Skip to content

Commit

Permalink
Fix bug in the way AWS env variables were added to command line
Browse files Browse the repository at this point in the history
  • Loading branch information
rappdw committed Aug 8, 2019
1 parent 7c5c0eb commit 5752972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run-image
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ if __name__ == '__main__':
gpu = ''

run_config = {
'environment': fetch_env_variables(config, args.image, args.env) + populate_aws_env_variables(),
'environment': fetch_env_variables(config, args.image, args.env) + ' ' + populate_aws_env_variables(),
'keep_container': args.keep or '--rm',
'interactive': '-d' if args.keep else '-it',
'gpu': gpu,
Expand Down

0 comments on commit 5752972

Please sign in to comment.