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
# Merge Script | |
# http://code.hootsuite.com/an-introduction-to-creating-and-distributing-embedded-frameworks-in-ios/ | |
# 1 | |
# Set bash script to exit immediately if any commands fail. | |
set -e | |
# 2 | |
# Setup some constants for use later on. |
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/sh | |
set -eo pipefail | |
IFS=$'\n\t' | |
NOW=$(date +%s) | |
RELEASE_NOTES="" | |
BUILD_FILE_NAME="Project-${NOW}" # put file name here | |
API_TOKEN="TODO" # put API token here | |
PROVISIONING_PROFILE_IDENTITY="Some Distribution Profile" |
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
#### Clone | |
git clone <some_repo_url> | |
#### Branch | |
git branch <branch_name> | |
#### Checkout | |
git checkout <branch_name> | |
#### Commit |
NewerOlder