chore(release) git pull should not cause error if no upstream
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-12-21 10:06:09 +01:00
parent a1f337dac2
commit 0cfd38e682
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)