We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--show ALIAS
If we have the following justfile:
alias b := build build: echo 'Building!'
And do just --show b, we'll see the recipe, but not the alias:
just --show b
$ just --show b build: echo 'Building!'
We should also show the alias:
$ just --show b alias b := build build: echo 'Building!'
The text was updated successfully, but these errors were encountered:
--show
--show NAME
Successfully merging a pull request may close this issue.
If we have the following justfile:
alias b := build build: echo 'Building!'
And do
just --show b
, we'll see the recipe, but not the alias:We should also show the alias:
The text was updated successfully, but these errors were encountered: