remove env variable for remote

This commit is contained in:
grimhilt
2023-06-25 21:27:31 +02:00
parent b74c5c176b
commit da3d605baa
7 changed files with 42 additions and 30 deletions

View File

@@ -68,9 +68,8 @@ pub fn nextsyncignore() -> Option<PathBuf> {
let mut path = repo_root();
path.push(".nextsyncignore");
if path.exists() {
return Some(path);
Some(path)
} else {
return None;
None
}
None
}