mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
13 lines
352 B
Bash
Executable File
13 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
commit_message=$(git log -1 --pretty=%B)
|
|
|
|
git clone -b symbols https://github.com/pret/pokecrystal symbols
|
|
cd symbols
|
|
|
|
cp ../*.sym .
|
|
git add *.sym
|
|
git -c user.name='travis' -c user.email='travis@travis-ci.org' commit -m "$commit_message"
|
|
git push -f -q https://pokepret:$GITHUB_API_KEY@github.com/pret/pokecrystal symbols &>/dev/null
|