Skip to content

Commit

Permalink
Compatibility with bash 3.x on Mac CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Apr 16, 2024
1 parent 5876e80 commit fb70f50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions github/reportify-coq-errors-gen.sh
Expand Up @@ -2,12 +2,12 @@

set -e

if [[ ! -v skip_unterminated_message_warning ]]; then
if [[ -z "${skip_unterminated_message_warning+x}" ]]; then
# default value
skip_unterminated_message_warning="" # empty means "don't skip"
fi

if [[ ! -v forbid_unterminated_errors ]]; then
if [[ -z "${forbid_unterminated_errors+x}" ]]; then
# default value
forbid_unterminated_errors="" # empty means "don't forbid"
fi
Expand Down

0 comments on commit fb70f50

Please sign in to comment.