Skip to content

Commit

Permalink
fix: set arguments on package during deploy guided
Browse files Browse the repository at this point in the history
  • Loading branch information
sriram-mv committed Nov 20, 2019
1 parent c9d21a3 commit 9a8ae95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samcli/commands/deploy/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,15 +251,15 @@ def do_cli(

with PackageContext(
template_file=template_file,
s3_bucket=s3_bucket,
s3_bucket=guided_s3_bucket if guided else s3_bucket,
s3_prefix=s3_prefix,
output_template_file=output_template_file.name,
kms_key_id=kms_key_id,
use_json=use_json,
force_upload=force_upload,
metadata=metadata,
on_deploy=True,
region=region,
region=guided_region if guided else region,
profile=profile,
) as package_context:
package_context.run()
Expand Down

0 comments on commit 9a8ae95

Please sign in to comment.