1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-01-27 16:59:32 +01:00

15 lines
316 B
Bash
Raw Normal View History

2016-05-11 07:22:10 -07:00
#!/bin/bash
set -e
git config user.name "Travis CI"
git config user.email "dkhamsing@users.noreply.github.com"
git checkout master
git add README.md
git commit -m "[auto] [ci skip] Generate README"
git push --quiet "https://${GH_TOKEN}@github.com/dkhamsing/open-source-ios-apps" master:master > /dev/null 2>&1