forked from jasder/antlr
13 lines
263 B
Bash
13 lines
263 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
thisdir=$(dirname "$0")
|
||
|
|
||
|
brew update
|
||
|
|
||
|
# Work around apparent rvm bug that is in Travis's Xcode image.
|
||
|
# https://github.com/direnv/direnv/issues/210
|
||
|
# https://github.com/travis-ci/travis-ci/issues/6307
|
||
|
shell_session_update() { :; }
|