Only if false

This commit is contained in:
James Ives 2019-03-04 10:40:11 -05:00
parent 752f33ab7d
commit 92a59fd352

View File

@ -45,9 +45,10 @@ REPOSITORY_PATH="https://${ACCESS_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" &&
# Checks to see if the remote exists prior to deploying.
# If the branch doesn't exist it gets created here as an orphan.
if [ `git ls-remote --heads $REPOSITORY_PATH $BRANCH | wc -l` ]
if [ `git ls-remote --heads $REPOSITORY_PATH $BRANCH | wc -l` = false ]
then
echo "Creating remote branch ${BRANCH} as it doesn't exist..."
git checkout "${BASE_BRANCH:-master}" && \
git checkout --orphan $BRANCH && \
git rm -rf . && \
touch README.md && \