diff --git a/examples/common/env.sh b/examples/common/env.sh index 51d0fcb6487..50df4a65296 100644 --- a/examples/common/env.sh +++ b/examples/common/env.sh @@ -79,6 +79,8 @@ mkdir -p "${VTDATAROOT}/tmp" alias mysql="command mysql --no-defaults -h 127.0.0.1 -P 15306" alias vtctldclient="command vtctldclient --server localhost:15999" -# Make sure aliases are expanded in non-interactive shell -shopt -s expand_aliases +# If using bash, make sure aliases are expanded in non-interactive shell +if [[ -n ${BASH} ]]; then + shopt -s expand_aliases +fi