Commit 8f4cdb1a authored by Joshua Peek's avatar Joshua Peek
Browse files

Ensure $PREFIX_PATH is quoted

parent 138814df
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
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
}