Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/warnet/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,10 @@ def filter(path):
print(f"Failed to deploy scenario commander: {scenario_name}")
print(f"Error: {e.stderr}")
return None
except FileNotFoundError as e:
click.secho(e)
click.secho("Please install Helm, or run `warnet setup`.", fg="red")
return None

# upload scenario files and network data to the init container
wait_for_init(name, namespace=namespace)
Expand Down
Loading