Display alias with --show NAME if one exists

Given the following justfile:

    alias b := build
    build:
        echo 'Building!'

Just will show the alias along with the recipe:

    $ just --show b
    alias b := build
    build:
        echo 'Building!'
This commit is contained in:
Casey Rodarmor 2019-08-23 20:45:57 -07:00
parent 04a2b6461e
commit e8c25423b8
3 changed files with 19 additions and 12 deletions

View File

@ -141,6 +141,10 @@ impl<'a> Justfile<'a> where {
Ok(())
}
pub fn get_alias(&self, name: &str) -> Option<&Alias> {
self.aliases.get(name)
}
pub fn get_recipe(&self, name: &str) -> Option<&Recipe<'a>> {
if let Some(recipe) = self.recipes.get(name) {
Some(recipe)

View File

@ -446,18 +446,21 @@ pub fn run() {
}
if let Some(name) = matches.value_of("SHOW") {
match justfile.get_recipe(name) {
Some(recipe) => {
println!("{}", recipe);
process::exit(EXIT_SUCCESS);
}
None => {
eprintln!("Justfile does not contain recipe `{}`.", name);
if let Some(suggestion) = justfile.suggest(name) {
eprintln!("Did you mean `{}`?", suggestion);
}
process::exit(EXIT_FAILURE)
if let Some(alias) = justfile.get_alias(name) {
let recipe = justfile.get_recipe(alias.target).unwrap();
println!("{}", alias);
println!("{}", recipe);
process::exit(EXIT_SUCCESS);
}
if let Some(recipe) = justfile.get_recipe(name) {
println!("{}", recipe);
process::exit(EXIT_SUCCESS);
} else {
eprintln!("Justfile does not contain recipe `{}`.", name);
if let Some(suggestion) = justfile.suggest(name) {
eprintln!("Did you mean `{}`?", suggestion);
}
process::exit(EXIT_FAILURE)
}
}

View File

@ -276,7 +276,7 @@ integration_test! {
justfile: "foo:\n bar\nalias f := foo",
args: ("--show", "f"),
stdin: "",
stdout: "foo:
stdout: "alias f := foo\nfoo:
bar
",
stderr: "",