Skip to content

Instantly share code, notes, and snippets.

@ivey
Created September 24, 2008 19:48
Show Gist options
  • Save ivey/12644 to your computer and use it in GitHub Desktop.
Save ivey/12644 to your computer and use it in GitHub Desktop.
# Add to .profile to run bin/rake if it's present
function rake() {
if [ -e bin/rake ]; then
bin/rake $*
else
`which rake` $*
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment