We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa84ec commit be12fc0Copy full SHA for be12fc0
src/warnet/control.py
@@ -371,6 +371,10 @@ def filter(path):
371
print(f"Failed to deploy scenario commander: {scenario_name}")
372
print(f"Error: {e.stderr}")
373
return None
374
+ except FileNotFoundError as e:
375
+ click.secho(e)
376
+ click.secho("Please install Helm, or run `warnet setup`.", fg="red")
377
+ return None
378
379
# upload scenario files and network data to the init container
380
wait_for_init(name, namespace=namespace)
0 commit comments