Fix macOS builds on Travis

RVM overrides the cd, popd, and pushd shell commands, causing the
"shell_session_update: command not found" error on macOS when executing those
commands.
This commit is contained in:
micbou 2017-11-29 19:34:53 +01:00
parent e8e144d446
commit fe0ba8c641
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05

View File

@ -2,6 +2,11 @@
set -ev
# RVM overrides the cd, popd, and pushd shell commands, causing the
# "shell_session_update: command not found" error on macOS when executing those
# commands.
unset -f cd popd pushd
####################
# OS-specific setup
####################