mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-09 13:10:44 +00:00
11 lines
198 B
Plaintext
11 lines
198 B
Plaintext
|
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
|