Skip to content

Commit

Permalink
Ensure $PREFIX_PATH is quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Aug 3, 2011
1 parent 138814d commit 8f4cdb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions versions/ree-1.8.7-2011.03
@@ -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
}

Expand Down

0 comments on commit 8f4cdb1

Please sign in to comment.