diff --git a/Cargo.toml b/Cargo.toml index 414220b..9a89e7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,4 +15,3 @@ reqwest = { version = "0.10", features = ["blocking", "json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" lazy_static = "1.4.0" - diff --git a/src/git.rs b/src/git.rs index 4d801bb..e43f17c 100644 --- a/src/git.rs +++ b/src/git.rs @@ -9,7 +9,7 @@ pub fn get_git_base_path() -> Option { }, Ok(mut path) => loop { if path.join(".git").is_dir() { - debug!("Found git base dir: {:?}", path) + debug!("Found git base dir: {:?}", path); return Some(path); } if !path.pop() {