From 06f6df792dc63b36eeee760b43b9355d59ae74ee Mon Sep 17 00:00:00 2001 From: Sio Date: Fri, 4 Jan 2019 08:35:14 +0800 Subject: [PATCH] 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 --- linux/getmangos.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/linux/getmangos.sh b/linux/getmangos.sh index c2b4393f..abc578b9 100755 --- a/linux/getmangos.sh +++ b/linux/getmangos.sh @@ -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 ;;