Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
c925aabe
Commit
c925aabe
authored
Jul 15, 2014
by
Robby Russell
Browse files
Merge pull request #2885 from tsujigiri/bundler/run_binstubbed
Make bundler plugin run binstubbed cmd if existing
parents
6eefbe24
480ca220
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/bundler/bundler.plugin.zsh
View file @
c925aabe
...
...
@@ -48,9 +48,17 @@ _within-bundled-project() {
false
}
_binstubbed
()
{
[
-f
"./bin/
${
1
}
"
]
}
_run-with-bundler
()
{
if
_bundler-installed
&&
_within-bundled-project
;
then
if
_binstubbed
$1
;
then
bundle
exec
"./bin/
$@
"
else
bundle
exec
$@
fi
else
$@
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment