chore(release) git pull should not cause error if no upstream

This commit is contained in:
2022-12-21 10:06:09 +01:00
parent 64897d32e4
commit 81e05cf859
3 changed files with 4 additions and 4 deletions

View File

@@ -202,12 +202,12 @@ impl FuzzyClone {
}),
)?;
} else {
util::shell::run(
let _ = util::shell::run(
&["git", "pull"],
Some(util::shell::RunOptions {
path: git_repo_path.clone(),
}),
)?;
);
}
Ok(git_repo_path)