Created
December 17, 2013 11:07
-
-
Save senny/8003269 to your computer and use it in GitHub Desktop.
Setup Evm and Cask on Travis.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script will setup Evm and Cask on Travis to use for Emacs Lisp testing. | |
# | |
# In .travis.yml, add Evm and Cask to PATH. | |
# | |
# - export PATH="/home/travis/.cask/bin:$PATH" | |
# - export PATH="/home/travis/.evm/bin:$PATH" | |
sudo mkdir /usr/local/evm | |
sudo chown travis:travis /usr/local/evm | |
curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash | |
curl -fsSkL https://raw.github.com/cask/cask/master/go | python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment