This commit is contained in:
Rohit Tanwar
2018-01-16 18:07:01 +05:30
parent 8492d0ae32
commit 03f3223044

View File

@ -7,11 +7,10 @@ commit_website_files() {
if [ $TRAVIS_EVENT_TYPE != "pull_request" ]; then
if [ $TRAVIS_BRANCH == "master" ]; then
echo "Committing to master branch..."
git status
git checkout -b "travis"
git add -A
git commit -m "travis_commit"
git status
fi
git commit -a --message="travis_commit"
fi
fi
}