Skip to content

Commit

Permalink
Fixed a typo in a user message.
Browse files Browse the repository at this point in the history
  • Loading branch information
zapta committed Nov 17, 2024
1 parent 0bac48f commit 461f73a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apio/commands/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,12 @@ def _list(resources: Resources, verbose: bool) -> int:
# -- Print an hint or summary based on the findings.
if scan.num_errors():
click.secho(
"[Hint] run 'apio packages -c' to fix the errors.", fg="yellow"
"[Hint] run 'apio packages -fix' to fix the errors.", fg="yellow"
)
elif scan.uninstalled_package_ids:
click.secho(
"[Hint] run 'apio packages -i' to install all available packages.",
"[Hint] run 'apio packages -install' to install all "
"available packages.",
fg="yellow",
)
else:
Expand Down

0 comments on commit 461f73a

Please sign in to comment.