6362e60a7b
See more about this on:
fdf20531bd
11 lines
147 B
Bash
Executable file
11 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "${BUILT_PRODUCTS_DIR}/${1}.framework"
|
|
shift
|
|
|
|
while [ ! -z "${1}" ]; do
|
|
ln -sf Versions/Current/"${1}" "${1}"
|
|
shift
|
|
done
|