1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
checktheroads-hyperglass/tests/ci_git_commit.sh

17 lines
274 B
Bash
Raw Normal View History

2019-06-18 14:55:34 -07:00
#!/bin/sh
2019-06-17 02:04:42 -07:00
commit_black() {
2019-06-18 11:00:48 -04:00
git add hyperglass/*.py
2019-06-17 02:04:42 -07:00
git commit --message "Black Formatting - travis $TRAVIS_BUILD_NUMBER"
}
commit_pylint() {
2019-06-17 02:04:42 -07:00
git add pylint.svg
git commit --message "Pylint Badge - travis $TRAVIS_BUILD_NUMBER"
}
commit_black
commit_pylint
2019-06-18 11:00:48 -04:00
exit 0