Replace Carton with Cask

The Carton project was renamed to Cask due to a naming conflict.

The Carton file gets renamed to Cask, and the zsh init script now
references the renamed project.
This commit is contained in:
Correl Roush 2013-08-13 22:11:19 -04:00
parent 447a3818e9
commit ab5f13299d
2 changed files with 4 additions and 4 deletions

8
.zshrc
View file

@ -37,8 +37,8 @@ if which virtualenvwrapper.sh >/dev/null; then
source virtualenvwrapper.sh
fi
# Emacs Carton
if [ ! -d ${HOME}/.carton ]; then
curl -fsSkL https://raw.github.com/rejeep/carton/master/go | sh
# Emacs Cask
if [ ! -d ${HOME}/.cask ]; then
curl -fsSkL https://raw.github.com/rejeep/cask.el/master/go | sh
fi
export PATH="${HOME}/.carton/bin:$PATH"
export PATH="${HOME}/.cask/bin:$PATH"