Skip to content

Instantly share code, notes, and snippets.

@marduk191
Created February 6, 2016 07:32
Show Gist options
  • Save marduk191/7e54369fb3b8c98d9d97 to your computer and use it in GitHub Desktop.
Save marduk191/7e54369fb3b8c98d9d97 to your computer and use it in GitHub Desktop.
My kodi release script
#!/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