1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

use lowercase for variablenames

This commit is contained in:
Bodo Tasche 2011-06-12 15:52:58 +02:00 committed by Hakan Ensari
parent 9e8194355c
commit 05883f3831

View file

@ -1,7 +1,7 @@
# This plugin is based on https://github.com/gma/bundler-exec
# modify the BUNDLED_COMMANDS if needed
BUNDLED_COMMANDS=(cucumber heroku rackup rails rake rspec ruby shotgun spec spork)
bundled_commands=(cucumber heroku rackup rails rake rspec ruby shotgun spec spork)
## Functions
@ -32,6 +32,6 @@ run-with-bundler()
}
## Main program
for CMD in $BUNDLED_COMMANDS; do
alias $CMD="run-with-bundler $CMD"
for cmd in $bundled_commands; do
alias $cmd="run-with-bundler $cmd"
done