We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 008b43d commit a7b1fbaCopy full SHA for a7b1fba
chezmoi/dot_local/bin/executable_ruby
@@ -4,6 +4,8 @@ if [ -x /workspaces/github/bin/safe-ruby ]; then
4
exec /workspaces/github/bin/safe-ruby "$@"
5
else
6
export PATH=${PATH//":$HOME/.local/bin:"/":"}
7
- command -v rbenv && eval "$(rbenv init -)"
8
- command ruby "$@"
+ if command -v rbenv > /dev/null; then
+ eval "$(rbenv init -)"
9
+ command ruby "$@"
10
+ fi
11
fi
0 commit comments