diff options
author | Sean Allred <code@seanallred.com> | 2014-10-31 01:40:41 -0400 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-10-31 01:40:41 -0400 |
commit | ff12289c437f3c3589b63186d5090bd7e81e8649 (patch) | |
tree | fedd272f90cdf9e7b321ef68514fdc7c2f445dad | |
parent | 93fcc5a71061416ecfcdb448e3475994fcb4ad45 (diff) |
Install emacs before Cask
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 44fa250..51d5b5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,20 +5,18 @@ env: - "EMACS=emacs24" before_install: - - curl -fsSkL https://gist.github.com/rejeep/7736123/raw | sh - - export PATH="/home/travis/.cask/bin:$PATH" - - export PATH="/home/travis/.evm/bin:$PATH" - - cask info - - cask outdated - - cask install - -install: - if [ "$EMACS" = "emacs24" ]; then sudo add-apt-repository -y ppa:cassou/emacs && sudo apt-get -qq update && sudo apt-get -qq -f install && sudo apt-get -qq install emacs24-nox; fi + - curl -fsSkL https://gist.github.com/rejeep/7736123/raw | sh + - export PATH="/home/travis/.cask/bin:$PATH" + - export PATH="/home/travis/.evm/bin:$PATH" + - cask info + - cask outdated + - cask install script: - $EMACS --version |