summaryrefslogtreecommitdiff
path: root/localserver/build.sh
blob: e856b1d43bad0ce3b1b546dcb428dfd625ad473a (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