mirror of https://github.com/jenv/jenv.git
Browse Source
This avoids errors where path contains spaces (e.g. `$HOME/Library/Application Support/jenv`).pull/452/head
21 changed files with 58 additions and 60 deletions
@ -1,9 +1,9 @@ |
|||||||
|
|
||||||
|
|
||||||
backuppath=$PATH |
backuppath="$PATH" |
||||||
|
|
||||||
PATH="$(remove_from_path "${JENV_ROOT}/shims")" |
PATH="$(remove_from_path "${JENV_ROOT}/shims")" |
||||||
VLT_BIN="$(command -v "vlt" || true)" |
VLT_BIN="$(command -v "vlt" || true)" |
||||||
make_shims "$VLT_BIN" |
make_shims "$VLT_BIN" |
||||||
|
|
||||||
PATH=$backuppath |
PATH="$backuppath" |
||||||
|
|||||||
Loading…
Reference in new issue