diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-17 16:13:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-17 16:13:25 -0300 |
commit | 73a8ff1c123e2845f2e5d6ec19cbf820cb8ea7e8 (patch) | |
tree | 1629570bd81e18db0091880bd703678d9493cd8a /localserver | |
parent | 17033acb97c6b666625d52e2fd1a07d3f4cbfcb5 (diff) | |
download | tools-73a8ff1c123e2845f2e5d6ec19cbf820cb8ea7e8.tar.gz tools-73a8ff1c123e2845f2e5d6ec19cbf820cb8ea7e8.tar.bz2 tools-73a8ff1c123e2845f2e5d6ec19cbf820cb8ea7e8.tar.xz tools-73a8ff1c123e2845f2e5d6ec19cbf820cb8ea7e8.zip |
beta patch
Diffstat (limited to 'localserver')
-rwxr-xr-x | localserver/build.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/localserver/build.sh b/localserver/build.sh index e299d4c..e856b1d 100755 --- a/localserver/build.sh +++ b/localserver/build.sh @@ -1,6 +1,19 @@ #!/usr/bin/env bash export DIR=`pwd` + +# Apply beta.patch if it exists +# 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 + ls + echo "........ Done." +fi + ./checktime.sh source ./clean.sh ./build.sh old |