diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-02-16 00:06:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-02-16 00:06:05 -0300 |
commit | 3b63b979ff478d9fe1e5ead94bd03fa58443fda4 (patch) | |
tree | db7e3914a130accd5aeba57a7c87679a06002ff4 | |
parent | d1612e5b966b8ba0176c84faa4dea9077c773ff8 (diff) | |
download | tools-3b63b979ff478d9fe1e5ead94bd03fa58443fda4.tar.gz tools-3b63b979ff478d9fe1e5ead94bd03fa58443fda4.tar.bz2 tools-3b63b979ff478d9fe1e5ead94bd03fa58443fda4.tar.xz tools-3b63b979ff478d9fe1e5ead94bd03fa58443fda4.zip |
Remove obsolete file
-rwxr-xr-x | localserver/updater.sh | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/localserver/updater.sh b/localserver/updater.sh deleted file mode 100755 index a36d047..0000000 --- a/localserver/updater.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/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 - |