Skip to content

Commit

Permalink
fix(core): errors fix added in previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Feb 27, 2024
1 parent 26d4353 commit 6944b86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function isValidCommitType {
##############################
log() {
if ! $IS_QUIET; then
if [ "${2:-}" == "-q" ]; then
if [ "${2-}" == "-q" ]; then
echo -e "$1"
else
echo -e "$CLI_PREFIX $1"
Expand All @@ -169,7 +169,7 @@ log() {
}
log_verbose() {
if $IS_VERBOSE; then
if [ "$2" == "-q" ]; then
if [ "${2-}" == "-q" ]; then
echo -e "$1"
else
echo -e "$CLI_PREFIX $1"
Expand Down

0 comments on commit 6944b86

Please sign in to comment.