Skip to content
Closed
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: 2 additions & 2 deletions src/warnet/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def is_kubectl_installed_and_offer_if_not() -> tuple[bool, str]:
inquirer.Confirm(
"install_kubectl",
message=click.style(
"Would you like Warnet to install Kubectl into your virtual environment?",
"Kubectl is required to run Warnet and was not found. Install it into your virtual environment ?",
fg="blue",
bold=True,
),
Expand Down Expand Up @@ -228,7 +228,7 @@ def is_helm_installed_and_offer_if_not() -> tuple[bool, str]:
inquirer.Confirm(
"install_helm",
message=click.style(
"Would you like Warnet to install Helm into your virtual environment?",
"Helm is required to run Warnet and was not found. Install it into your virtual environment ?",
fg="blue",
bold=True,
),
Expand Down
Loading