-
-
Save marduk191/7e54369fb3b8c98d9d97 to your computer and use it in GitHub Desktop.
My kodi release script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Kodi Repo tool frontend | |
## By marduk191 | |
## email: [email protected] | |
while getopts ":sf" flags; | |
do | |
case $flags in | |
s) | |
git add . | |
git commit -a | |
git push origin master | |
;; | |
f) | |
python release.py | |
git add . | |
git commit -a | |
git push origin master | |
;; | |
h) | |
echo "push -s for single repo commits" | |
echo "push -r to do a release" | |
esac | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment