mirror of
https://github.com/electron/electron.git
synced 2026-01-25 15:28:11 -05:00
12 lines
147 B
Bash
Executable File
12 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
|