Skip to content

Instantly share code, notes, and snippets.

@liscio
Created July 6, 2011 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liscio/1067954 to your computer and use it in GitHub Desktop.
Save liscio/1067954 to your computer and use it in GitHub Desktop.
#!/bin/sh
# copyFrameworks.sh
# Capo
#
# Created by Christopher Liscio on 11-07-05.
# Copyright 2011 SuperMegaUltraGroovy. All rights reserved.
FRAMEWORKS=${1}
PRIVATE_FRAMEWORKS_PATH=${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}
mkdir -p ${PRIVATE_FRAMEWORKS_PATH}
for fwk in ${FRAMEWORKS}
do
FRAMEWORK_NAME=${BUILT_PRODUCTS_DIR}/${fwk}
cp -RH "${FRAMEWORK_NAME}" "${PRIVATE_FRAMEWORKS_PATH}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment