Files
azerothcore-wotlk-pbot/install.sh
Yehonal b0bc413af7 created install script
It works on all platform that supports basic bash

( windows, linux, osx etc )
2016-08-07 12:08:56 +02:00

13 lines
350 B
Bash
Executable File

#!/bin/bash
CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PATH_MODULES="$CUR_PATH/modules/"
[ ! -d $PATH_MODULES/udw/joiner ] && git clone https://github.com/udw/joiner $PATH_MODULES/udw/joiner -b master
source "$PATH_MODULES/udw/joiner/joiner.sh"
if [[ $1 == "dev" ]]; then
git submodule update --init "$CUR_PATH/data/doc"
fi