From 1ef255510033213e9c524b313a49cd29d71e3c59 Mon Sep 17 00:00:00 2001 From: Sebastian Wiesner Date: Sat, 10 Aug 2013 16:55:01 +0200 Subject: [PATCH] Move from Carton to Cask Carton was renamed to Cask to avoid a name clash with a Perl utility of that name. --- modules/emacs/init.zsh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/emacs/init.zsh b/modules/emacs/init.zsh index cce9e1e..3acc965 100644 --- a/modules/emacs/init.zsh +++ b/modules/emacs/init.zsh @@ -5,21 +5,21 @@ # # Return if requirements are not found. -if [[ ! -d "$HOME/.carton" ]]; then +if [[ ! -d "$HOME/.cask" ]]; then return 1 fi -# Prepend Carton bin directory. -path=($HOME/.carton/bin $path) +# Prepend Cask bin directory. +path=($HOME/.cask/bin $path) # Load Carton completion -source "$HOME/.carton/etc/carton_completion.zsh" 2> /dev/null +source "$HOME/.cask/etc/cask_completion.zsh" 2> /dev/null # # Aliases # -alias cai='carton install' -alias cau='carton update' -alias caI='carton init' -alias cae='carton exec' +alias cai='cask install' +alias cau='cask update' +alias caI='cask init' +alias cae='cask exec'