ZSH and Rake Parameters

Comments

If you are using ZSH and trying to pass a parameter into a task:

1
rake task['param']

or

1
rake task[param]

you may be getting an error that says:

1
zsh: no matches found: task[param]

To solve this issue I had to add the following alias to my .zshrc file:

1
alias rake='noglob rake'

Comments