summaryrefslogtreecommitdiff
path: root/plugins/bundler/bundler.plugin.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/bundler/bundler.plugin.zsh')
-rw-r--r--plugins/bundler/bundler.plugin.zsh6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh
index c91dc9ab9..e98bb4b46 100644
--- a/plugins/bundler/bundler.plugin.zsh
+++ b/plugins/bundler/bundler.plugin.zsh
@@ -23,12 +23,10 @@ _within-bundled-project() {
}
_run-with-bundler() {
- local command="$1"
- shift
if _bundler-installed && _within-bundled-project; then
- bundle exec $command "$@"
+ bundle exec $@
else
- $command "$@"
+ $@
fi
}