Skip to content

Instantly share code, notes, and snippets.

@mbinna
Last active May 31, 2017 08:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbinna/9956425 to your computer and use it in GitHub Desktop.
Save mbinna/9956425 to your computer and use it in GitHub Desktop.
Run Deploymate in an Xcode Run Script Build Phase
# Deploymate Command Line Interface: http://www.deploymateapp.com/kb/cli/
#
DEPLOYMATE="/Applications/Deploymate.app/Contents/MacOS/Deploymate"
if [[ -x "${DEPLOYMATE}" ]]; then
"${DEPLOYMATE}" --cli --target=XXX --forced-exit-code "${PROJECT_FILE_PATH}"
fi
@chbeer
Copy link

chbeer commented Dec 8, 2014

--target=XXX could be done with --target="${TARGETNAME}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment