Add period to empty justfile error message (#192)

This commit is contained in:
Casey Rodarmor 2017-05-07 14:50:46 -07:00 committed by GitHub
parent 7f2d360231
commit 200cb4ee26

View File

@ -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 {