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)*);
|
||||
}};
|
||||
}
|
||||
|
||||
macro_rules! die {
|
||||
($($arg:tt)*) => {{
|
||||
extern crate std;
|
||||
@ -335,7 +336,7 @@ pub fn app() {
|
||||
} else if let Some(recipe) = justfile.first() {
|
||||
vec![recipe]
|
||||
} else {
|
||||
die!("Justfile contains no recipes");
|
||||
die!("Justfile contains no recipes.");
|
||||
};
|
||||
|
||||
let options = RunOptions {
|
||||
|
Loading…
Reference in New Issue
Block a user