diff options
Diffstat (limited to 'src/vcs.rs')
-rw-r--r-- | src/vcs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ use colored::*; | |||
5 | 5 | ||
6 | pub fn vcs_status() -> Option<(colored::ColoredString, colored::ColoredString)> { | 6 | pub fn vcs_status() -> Option<(colored::ColoredString, colored::ColoredString)> { |
7 | let current_dir = env::var("PWD").unwrap(); | 7 | let current_dir = env::var("PWD").unwrap(); |
8 | 8 | ||
9 | let mut repo: Option<Repository> = None; | 9 | let mut repo: Option<Repository> = None; |
10 | let current_path = Path::new(¤t_dir[..]); | 10 | let current_path = Path::new(¤t_dir[..]); |
11 | for path in current_path.ancestors() { | 11 | for path in current_path.ancestors() { |