Skip to content

Commit

Permalink
feat: Support --yes in other deployments than app as well (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
sveneberth authored Apr 22, 2024
1 parent 8e39616 commit 42e1c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viur_cli/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def deploy(action, profile, name, ext, yes, additional_args):
return

os.system(
f'gcloud app deploy --project={conf["application_name"]} {" ".join(additional_args)} {yaml_file}')
f'gcloud app deploy --project={conf["application_name"]} {" ".join(additional_args)} {yaml_file} {"-q" if yes else ""}')


def build_deploy_command(name, conf):
Expand Down

0 comments on commit 42e1c5f

Please sign in to comment.