summaryrefslogtreecommitdiff
path: root/localserver/build.sh
blob: 92226ff7b6c14fd08b5d621b37427bbf5d3f5b0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 > /dev/null