Skip to content

Commit

Permalink
fix(CLI): Do not ask to create the pipeline if the user has said yes …
Browse files Browse the repository at this point in the history
…as param
  • Loading branch information
qgerome committed Jun 11, 2024
1 parent bb0c98a commit 6597876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhexa/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def pipelines_push(
abort=True,
)
create_pipeline(pipeline.code, pipeline.name)
else:
elif not yes:
click.confirm(
f"Pushing pipeline {click.style(pipeline.code, bold=True)} to workspace {click.style(workspace, bold=True)} with name {click.style(name, bold=True)}?",
True,
Expand Down

0 comments on commit 6597876

Please sign in to comment.