/
githubmirror
/
java-design-patterns
Обзор
Документация
Войти
/
githubmirror
/
java-design-patterns
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.7.0
update-ghpages.sh
22 строки
596 B
NooBxGockeL
Work on #218, fix push command
10 сен 2015, 19:43
10 сен 2015, 19:43
bbd7864
Код
Авторство
О чём код?
#!/bin/bash # Clone gh-pages git clone -b gh-pages "https://${GH_REF}" ghpagesclone cd ghpagesclone # Init and update submodule to latest git submodule update --init --recursive git submodule update --remote # Setup Git git config user.name "Travis-CI" git config user.email "travis@no.reply" # If there is a new version of the master branch if git status | grep patterns > /dev/null 2>&1 then # it should be committed git add . git commit -m ":sparkles: :up: Automagic Update via Travis-CI" git push --quiet "https://${GH_TOKEN}:x-oauth-basic@${GH_REF}" gh-pages > /dev/null 2>&1 fi