From ab5f13299d18a54a6c4cc70cfa2a3b56c26077f2 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 13 Aug 2013 22:11:19 -0400 Subject: [PATCH] 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. --- .emacs.d/{Carton => Cask} | 0 .zshrc | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename .emacs.d/{Carton => Cask} (100%) diff --git a/.emacs.d/Carton b/.emacs.d/Cask similarity index 100% rename from .emacs.d/Carton rename to .emacs.d/Cask diff --git a/.zshrc b/.zshrc index b978348..a4b6cf7 100644 --- a/.zshrc +++ b/.zshrc @@ -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"