From d09e4140aa0bd9e86292ef221ba1194c7e801d6c Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Wed, 6 Jun 2012 10:21:45 -0500 Subject: [PATCH] Fix for rake and zsh This became an issue when I noticed I was getting an error running octopress tasks such as `rake new_post["foo"]` --- zsh/aliases.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index b23bad2..289752f 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -12,5 +12,8 @@ alias grep='grep --color=auto' alias df='df -h' # disk free, in Gigabytes, not bytes alias du='du -h -c' # calculate disk usage for a folder +# rake fix +alias rake="noglob rake" + # Applications alias mou='open -a Mou.app'