summaryrefslogtreecommitdiffstats
path: root/src/dir.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-01-28 16:53:13 +0000
committerBen S <ogham@bsago.me>2015-01-28 16:53:13 +0000
commitbe9eefe44be9671f2468ba18309ca52c1ad78b04 (patch)
tree2e7f304ebd230b54cd5d50debd4298faab36339d /src/dir.rs
parente86f0e12bfcec15120dd6d89ddea8e5450e4d1b6 (diff)
Oops, fix --no-default-features compilation
Diffstat (limited to 'src/dir.rs')
-rw-r--r--src/dir.rs4
1 files changed, 4 insertions, 0 deletions
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)
+ }
}