Update source-release.sh

This commit is contained in:
FusionPBX 2019-02-21 10:17:03 -07:00 committed by GitHub
parent 31af0983df
commit 9b0b6fa4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -8,16 +8,13 @@ echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.8/ stretch main" >
echo "deb-src http://files.freeswitch.org/repo/deb/freeswitch-1.8/ stretch main" >> /etc/apt/sources.list.d/freeswitch.list
#upgrade packages
apt update && apt upgrade
apt update && apt upgrade -y
# install dependencies
apt-get build-dep freeswitch
# install dependencies
apt-get build-dep freeswitch
apt build-dep freeswitch -y
# additional dependencies
apt install sqlite3 swig3.0 unzip
apt install -y sqlite3 swig3.0 unzip
#we are about to move out of the executing directory so we need to preserve it to return after we are done
CWD=$(pwd)