2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-13 07:10:49 +00:00
Comrad/bin/comrad-update
quadrismegistus e973e8ed08 changes
2020-09-29 14:20:11 +01:00

11 lines
197 B
Plaintext
Executable File

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 'comrad update!'
git push
cd $wd