Fix removing unsuitable use of open in bump version script

This commit is contained in:
Simon Frei 2023-01-01 21:56:21 +01:00
parent 8d20884817
commit 212e1bafa2
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ if command -v edit >/dev/null; then
elif [ -n "$EDITOR" ]; then elif [ -n "$EDITOR" ]; then
editor="$EDITOR" editor="$EDITOR"
else else
echo "No editor found - need either `edit` binary or $EDITOR env var set" echo "No editor found - need either 'edit' binary or EDITOR env var set"
exit 1
fi fi
$editor $CHANGELOG $editor $CHANGELOG