Skip to content
This repository has been archived by the owner on Nov 3, 2019. It is now read-only.

Commit

Permalink
1.2.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
scottphilip committed Aug 2, 2017
1 parent 1abcaf3 commit 85d782a
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions COPYLOGS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,30 @@ git init .
git config user.email "travis@travis-ci.org"
git config user.name "Travis CI"

echo "ADDING TO GIT... [https://${REPO_PATH}] ..."
echo "GIT CLONE... [https://${REPO_PATH}] ..."
git clone https://${REPO_PATH}
cd "${LOG_REPO}"

echo "MOVING FILES... [${LOG_JOB_PATH} >> ${GIT_JOB_PATH}]"
mkdir -p ${GIT_JOB_PATH}
mv -v "${LOG_JOB_PATH}"/* "${GIT_JOB_PATH}"

echo "ADDING FILES TO GIT... [${GIT_JOB_PATH}]"
echo "GIT ADD... [${GIT_JOB_PATH}]"
git add "${GIT_JOB_PATH}"/*

echo "COMMITTING CHANGES... [${MESSAGE}]"
echo "GIT COMMIT... [${MESSAGE}]"
git commit -m "${MESSAGE}"

echo "UPLOADING FILES..."
echo "GIT FETCH..."
git fetch

echo "GIT MERGE..."
git merge origin/master

echo "GIT REMOTE..."
git remote add origin https://${REPO_PATH} > /dev/null 2>&1

echo "GIT PUSH..."
git push origin master

echo "COMPLETE"

0 comments on commit 85d782a

Please sign in to comment.