Skip to content

Commit

Permalink
Fixing the errored out issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmakkar08 committed Nov 7, 2016
1 parent 8de4827 commit cced5b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions update_documentation.sh
Expand Up @@ -34,12 +34,17 @@ echo "Checking out $FROM_BRANCH..." && \
git fetch origin ${FROM_BRANCH}:${FROM_BRANCH} && \
git checkout ${FROM_BRANCH}

echo "Pulling the $FROM_BRANCH branch" && \
git pull && \

echo "Checking out $TO_BRANCH..." && \
# Checkout the latest stable
git fetch origin ${TO_BRANCH}:${TO_BRANCH} && \
git checkout ${TO_BRANCH} && \

echo "Pulling the $TO_BRANCH branch" && \
git pull && \

# Merge the dev into latest stable
echo "Merging changes..." && \
git merge ${FROM_BRANCH} && \
Expand Down

0 comments on commit cced5b6

Please sign in to comment.