Add period to empty justfile error message (#192)
This commit is contained in:
parent
7f2d360231
commit
200cb4ee26
@ -16,6 +16,7 @@ macro_rules! warn {
|
|||||||
let _ = writeln!(&mut std::io::stderr(), $($arg)*);
|
let _ = writeln!(&mut std::io::stderr(), $($arg)*);
|
||||||
}};
|
}};
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! die {
|
macro_rules! die {
|
||||||
($($arg:tt)*) => {{
|
($($arg:tt)*) => {{
|
||||||
extern crate std;
|
extern crate std;
|
||||||
@ -335,7 +336,7 @@ pub fn app() {
|
|||||||
} else if let Some(recipe) = justfile.first() {
|
} else if let Some(recipe) = justfile.first() {
|
||||||
vec![recipe]
|
vec![recipe]
|
||||||
} else {
|
} else {
|
||||||
die!("Justfile contains no recipes");
|
die!("Justfile contains no recipes.");
|
||||||
};
|
};
|
||||||
|
|
||||||
let options = RunOptions {
|
let options = RunOptions {
|
||||||
|
Loading…
Reference in New Issue
Block a user