Use the correct paths for Emacs (fix #112)

This commit is contained in:
Roey Darwish Dror
2019-01-27 20:04:46 +02:00
parent 71558e6bdb
commit df27021277
2 changed files with 13 additions and 0 deletions

View File

@@ -8,10 +8,12 @@ use std::io;
use std::path::{Path, PathBuf};
use std::process::Command;
#[derive(Debug)]
pub struct Git {
git: Option<PathBuf>,
}
#[derive(Debug)]
pub struct Repositories<'a> {
git: &'a Git,
repositories: HashSet<String>,