1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/tests/ci_git_commit.sh
2019-06-18 15:07:00 -07:00

16 lines
274 B
Bash
Executable file

#!/bin/sh
commit_black() {
git add hyperglass/*.py
git commit --message "Black Formatting - travis $TRAVIS_BUILD_NUMBER"
}
commit_pylint() {
git add pylint.svg
git commit --message "Pylint Badge - travis $TRAVIS_BUILD_NUMBER"
}
commit_black
commit_pylint
exit 0