Skip to content

Instantly share code, notes, and snippets.

@senny
Created December 17, 2013 11:07
Show Gist options
  • Save senny/8003269 to your computer and use it in GitHub Desktop.
Save senny/8003269 to your computer and use it in GitHub Desktop.
Setup Evm and Cask on Travis.
#!/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