Skip to content

Commit 81e05cf

Browse files
committed
chore(release) git pull should not cause error if no upstream
1 parent 64897d3 commit 81e05cf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "toolkit"
33
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"
4-
version = "0.1.9"
4+
version = "0.1.10"
55
edition = "2021"
66
license-file = "LICENSE"
77
authors = ["Kasper J. Hermansen contact@kjuulh.io"]

crates/github/src/fuzzy_clone.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,12 @@ impl FuzzyClone {
202202
}),
203203
)?;
204204
} else {
205-
util::shell::run(
205+
let _ = util::shell::run(
206206
&["git", "pull"],
207207
Some(util::shell::RunOptions {
208208
path: git_repo_path.clone(),
209209
}),
210-
)?;
210+
);
211211
}
212212

213213
Ok(git_repo_path)

0 commit comments

Comments
 (0)