Commit 64fe7412 authored by Samuel E. Giddins's avatar Samuel E. Giddins

[EmbedFrameworksScript] Fix Bash syntax

parent 76261935
...@@ -47,9 +47,9 @@ module Pod ...@@ -47,9 +47,9 @@ module Pod
{ {
if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
local source="${BUILT_PRODUCTS_DIR}/$1" local source="${BUILT_PRODUCTS_DIR}/$1"
elsif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
elsif [ -r "$1" ]; then elif [ -r "$1" ]; then
local source="$1" local source="$1"
fi fi
......
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