add support of ubuntu 18.04 in file getmangos.sh (#69)

* add support of ubuntu 18.04 in file getmangos.sh

* fixes colon issue beside bionic case

* Update getmangos.sh

* fixed wrong bracket coded in shell

* Update getmangos.sh
This commit is contained in:
Sio 2019-01-04 08:35:14 +08:00 committed by Antz
parent 6b0e4a7228
commit 06f6df792d

View File

@ -255,6 +255,10 @@ function GetPrerequisites()
# Ubuntu 17.10
su -c "apt-get -y install curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root
;;
"bionic")
# Ubuntu 18.04
su -c "apt-get -y install curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root
;;
*)
OS_VER=0
;;