Commit 093e3903 by Sam Stephenson

Proper quoting

parent 057d1314
...@@ -482,10 +482,10 @@ LOG_PATH="${TMP}/ruby-build.${SEED}.log" ...@@ -482,10 +482,10 @@ LOG_PATH="${TMP}/ruby-build.${SEED}.log"
RUBY_BIN="${PREFIX_PATH}/bin/ruby" RUBY_BIN="${PREFIX_PATH}/bin/ruby"
CWD="$(pwd)" CWD="$(pwd)"
if [ -z $RUBY_BUILD_BUILD_PATH ]; then if [ -z "$RUBY_BUILD_BUILD_PATH" ]; then
BUILD_PATH="${TMP}/ruby-build.${SEED}" BUILD_PATH="${TMP}/ruby-build.${SEED}"
else else
BUILD_PATH=$RUBY_BUILD_BUILD_PATH BUILD_PATH="$RUBY_BUILD_BUILD_PATH"
fi fi
exec 4<> "$LOG_PATH" # open the log file at fd 4 exec 4<> "$LOG_PATH" # open the log file at fd 4
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment