2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-09 13:10:44 +00:00
Comrad/bin/komrade-update

11 lines
198 B
Plaintext
Raw Normal View History

2020-09-16 19:13:41 +00:00
SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
wd=`pwd`
path=`realpath "$SCRIPTPATH/.."`
cd $path
git pull
git add .
git commit -m 'komrade update!'
git push
cd $wd