mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-01 14:44:48 +01:00
Ensure $PREFIX_PATH is quoted
This commit is contained in:
parent
138814df03
commit
8f4cdb1a0d
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
build_package_ree_installer() {
|
||||
local options="--auto $PREFIX_PATH"
|
||||
local options=""
|
||||
if [[ "Darwin" = "$(uname)" ]]; then
|
||||
options="$options --no-tcmalloc"
|
||||
options="--no-tcmalloc"
|
||||
fi
|
||||
|
||||
{ ./installer $options
|
||||
{ ./installer --auto "$PREFIX_PATH" $options
|
||||
} >$LOG_PATH 2>&1
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue