git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
# BEGIN EDITABLE AREA | |
# replace with slack hook URL for slack support | |
SLACK_HOOK_URL="https://hooks.slack.com/services/RELACE_WITH_FULL_HOOK_URL" | |
# check if we're running as the bot or as an archive step from xcode, change as needed | |
if [ "${INSTALL_OWNER}" = "_xcsbuildd" ] | |
then | |
BETA_OUTPUT_FOLDER="/usr/local/var/www/${PRODUCT_NAME}/${FULL_VERSION}" | |
BETA_LATEST_FOLDER="/usr/local/var/www/${PRODUCT_NAME}/latest" |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
###Creation of key and cert from exported p12 file
$ openssl pkcs12 -clcerts -nokeys -out apns-cert.pem -in cert.p12
$ openssl pkcs12 -nocerts -out apns-key.pem -in key.p12
$ openssl rsa -in apns-key.pem -out apns-key-noenc.pem
###Optional to create combined key
$ cat apns-cert.pem apns-key-noenc.pem > apns.pem
$ sudo nvram boot-args="kext-dev-mode=1"