Skip to content

Commit

Permalink
fix: Fix double negative in error message (#822)
Browse files Browse the repository at this point in the history
This error is confusing to users, and required rewording for clarity.
  • Loading branch information
vinnymac committed Sep 14, 2020
1 parent 1847d59 commit 947ca13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/vcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ pub fn get_commits_from_git<'a>(
// If there is a previous commit but cannot find it in git history, throw an error.
if !found {
return Err(format_err!(
"Couldn’t not find the SHA of the previous release in the git history. Increase your git clone depth.",
"Could not find the SHA of the previous release in the git history. Increase your git clone depth.",
));
}
let prev = result.pop();
Expand Down

0 comments on commit 947ca13

Please sign in to comment.