Skip to content

Commit

Permalink
chore(release): fix test for updating changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <[email protected]>
  • Loading branch information
hawkw committed Jun 21, 2022
1 parent 0ff9b60 commit 2e2f7f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ update_changelog() {
. "$bindir"/update-changelog
changelog_status="$?"

if ! "$changelog_status"; then
if [[ $changelog_status -ne 0 ]]; then
err "failed to update changelog"
exit "$changelog_status"
fi
Expand Down

0 comments on commit 2e2f7f7

Please sign in to comment.