-
-
Save byplayer/8429281 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function install(){ | |
REPO=$1 | |
DIR=$2 | |
TARGET=$3 | |
BUILD_DIR=~/buildxcodeplugins/work | |
mkdir -p ${BUILD_DIR} | |
rm -rf ${BUILD_DIR}/* | |
pushd ${BUILD_DIR} | |
git clone ${REPO} | |
xcodebuild -project ${BUILD_DIR}/${DIR}/${TARGET}.xcodeproj -configuration Release clean build | |
popd | |
} | |
install https://github.com/questbeat/Lin-Xcode5.git Lin-Xcode5 Lin | |
install https://github.com/ksuther/KSImageNamed-Xcode.git KSImageNamed-Xcode KSImageNamed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment