Add period to no justfile found error. Bump version.

This commit is contained in:
Casey Rodarmor 2016-09-28 13:20:49 -07:00
parent 68029874c7
commit dd83cc46bf
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1,4 +1,4 @@
[root]
name = "j"
version = "0.1.4"
version = "0.1.5"

View file

@ -1,6 +1,6 @@
[package]
name = "j"
version = "0.1.4"
version = "0.1.5"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
license = "WTFPL/MIT/Apache-2.0"
description = "a command runner"

View file

@ -97,7 +97,7 @@ fn main() {
}
match std::env::current_dir() {
Ok(pathbuf) => if pathbuf.as_os_str() == "/" { die!("No justfile found"); },
Ok(pathbuf) => if pathbuf.as_os_str() == "/" { die!("No justfile found."); },
Err(error) => die!("Error getting current dir: {}", error),
}