14 lines
249 B
Plaintext
14 lines
249 B
Plaintext
|
echo "Updating Gosora"
|
||
|
rm ./schema/lastSchema.json
|
||
|
cp ./schema/schema.json ./schema/lastSchema.json
|
||
|
git stash
|
||
|
git pull origin master
|
||
|
git stash apply
|
||
|
|
||
|
echo "Patching Gosora"
|
||
|
cd ./patcher
|
||
|
go generate
|
||
|
go build -o Patcher
|
||
|
mv ./Patcher ..
|
||
|
cd ..
|
||
|
./Patcher
|