Skip to content
Snippets Groups Projects
Commit cb899e7d authored by Yannick DAYER's avatar Yannick DAYER
Browse files

[fix] click echo to not fail in bdt dev install

click.echo does not behave like print: Only one argument will be printed
The next args are destination file, and some flags.
parent 48fb8839
No related branches found
No related tags found
1 merge request!302[fix] click echo to not fail in bdt dev install
Pipeline #62608 passed
......@@ -45,7 +45,7 @@ def install(env_name, folders):
cmd,
shell=True,
)
click.echo("Installed package using the command:", cmd)
click.echo(f"Installed package using the command: {cmd}")
@click.command(epilog="See bdt dev --help for examples of this command.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment