This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
pyenv
mirror of
https://github.com/pyenv/pyenv.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
241
Wiki
Activity
Browse Source
Quote script path and remove unnecessary semicolon
pull/360/head^2
Sam Stephenson
15 years ago
parent
096743acde
commit
699cd8c203
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libexec/rbenv-exec
+1
-1
libexec/rbenv-rehash
+1
-1
libexec/rbenv-which
+ 1
- 1
libexec/rbenv-exec
View File
@ -17,7 +17,7 @@ RBENV_COMMAND_PATH="$(rbenv-which "$RBENV_COMMAND")"
RBENV_BIN_PATH="${RBENV_COMMAND_PATH%/*}"
for script in $(rbenv-plugin-scripts exec); do
source $script;
source
"
$script
"
;
done
shift 1
+ 1
- 1
libexec/rbenv-rehash
View File
@ -71,5 +71,5 @@ make_shims ../versions/*/bin/*
cd "$CUR_PATH"
for script in $(rbenv-plugin-scripts rehash); do
source $script;
source
"
$script
"
;
done
+ 1
- 1
libexec/rbenv-which
View File
@ -53,7 +53,7 @@ else
fi
for script in $(rbenv-plugin-scripts which); do
source $script;
source
"
$script
"
;
done
if [ -x "$RBENV_COMMAND_PATH" ]; then
Write
Preview
Loading…
Cancel
Save