blob: 7aa1f2fbc67bf495036c5a64d841f0174f4f0989 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/usr/bin/env bash
# Apply beta.patch if it exists to server-data
# It will only exist on BETA SERVERS, though
if [ -e "./beta.patch" ]
then
echo "Apply beta.patch ........"
cd ../../server-data
git apply ../tools/localserver/beta.patch
cd $DIR
mv beta.patch .~beta.patch
ls
echo "........ Done."
fi
# Apply beta.patch2 if it exists to server-code
# It will only exist on BETA SERVERS, though
if [ -e "./beta.patch2" ]
then
echo "Apply server updates ........"
sleep 1
cd ../../server-code
git checkout -- src
echo "Rolling server back to correct version"
git diff master ce2dbb6acdc559ec256d1f9f9a779b8283064708 > x.diff
ls
head -n 25 x.diff
tail -n 40 x.diff
git apply --reject --whitespace=nowarn x.diff
git status
ls --recursive|grep ".rej"
cd ../tools/localserver
echo "Server code clean ........"
sleep 1
python applicator.py
echo "Apply beta.patch2 ........"
cd ../../server-code
git apply ../tools/localserver/beta.patch2
cd $DIR
#mv beta.patch2 .~beta.patch2
ls
echo "........ Done."
fi
|