Ensure $PREFIX_PATH is quoted

This commit is contained in:
Joshua Peek 2011-08-02 22:08:44 -05:00
parent 138814df03
commit 8f4cdb1a0d

View file

@ -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
}