Try to make bash script work for os x.

This commit is contained in:
Davis King 2019-03-17 22:18:57 -04:00
parent e3f67173ff
commit b8324f5a3f

View File

@ -3,7 +3,7 @@
set -eux
# execute the contents of MATRIX_EVAL if it's set
if [[ -v MATRIX_EVAL ]]; then
if [ -n "${MATRIX_EVAL+set}" ]; then
eval "${MATRIX_EVAL}"
fi