Shell cleanup

This commit is contained in:
Andrew Imeson 2019-06-18 11:00:48 -04:00
parent d46f90acff
commit dc6dd12364
No known key found for this signature in database
GPG key ID: 82A3DCD89FC9E016
2 changed files with 3 additions and 5 deletions

View file

@ -5,4 +5,4 @@ git_commit() {
git push --quiet --set-upstream origin master git push --quiet --set-upstream origin master
} }
git_commit() git_commit

View file

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
commit_black() { commit_black() {
git add hyperglass/ *.py git add hyperglass/*.py
git commit --message "Black Formatting - travis $TRAVIS_BUILD_NUMBER" git commit --message "Black Formatting - travis $TRAVIS_BUILD_NUMBER"
} }
@ -19,6 +19,4 @@ setup_git
commit_black commit_black
commit_pylint commit_pylint
if [ $? -ne 0 ]; then exit 0
exit 0
fi