Skip to content
New issue

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

Make --show ALIAS also show the alias #442

Closed
casey opened this issue May 15, 2019 · 0 comments · Fixed by #466
Closed

Make --show ALIAS also show the alias #442

casey opened this issue May 15, 2019 · 0 comments · Fixed by #466
Milestone

Comments

@casey
Copy link
Owner

casey commented May 15, 2019

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
build: 
    echo 'Building!'

We should also show the alias:

$ just --show b
alias b := build
build: 
    echo 'Building!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant