Skip to content

Commit

Permalink
chore(release) git pull should not cause error if no upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
kjuulh committed Dec 21, 2022
1 parent 64897d3 commit 81e05cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "toolkit"
description = "Toolkit is an opinionated toolkit complementing a personal development workflow. Many of the commands are quite verbose, and well suited for adding to your shell toolbelt"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
license-file = "LICENSE"
authors = ["Kasper J. Hermansen contact@kjuulh.io"]
Expand Down
4 changes: 2 additions & 2 deletions crates/github/src/fuzzy_clone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 81e05cf

Please sign in to comment.