From be9eefe44be9671f2468ba18309ca52c1ad78b04 Mon Sep 17 00:00:00 2001 From: Ben S Date: Wed, 28 Jan 2015 16:53:13 +0000 Subject: [PATCH] Oops, fix --no-default-features compilation --- src/dir.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dir.rs b/src/dir.rs index e22b092..52c525b 100644 --- a/src/dir.rs +++ b/src/dir.rs @@ -150,4 +150,8 @@ impl Git { // The Err above means that this should never happen panic!("Tried to access a Git repo without Git support!"); } + + fn dir_status(&self, path: &Path) -> String { + self.status(path) + } } -- GitLab