diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/debian.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/debian.sh b/installer/debian.sh index 5132a2b..81f6db8 100644 --- a/installer/debian.sh +++ b/installer/debian.sh @@ -118,7 +118,7 @@ sudo apt-get -y install build-essential git wget \ if [[ "$DISTRO" == "jessie" || "$DISTRO" == "stretch" ]] ; then sudo apt-get -y install vlc-nox elif [ "$DISTRO" == "buster" ] ; then - sudo apt-get -y install vlc-plugins-base + sudo apt-get -y install vlc-plugin-base fi if [ "$DISTRO" == "jessie" ] ; then @@ -126,7 +126,7 @@ if [ "$DISTRO" == "jessie" ] ; then elif [ "$DISTRO" == "stretch" ] ; then sudo apt-get -y install libzmq3-dev libzmq5 elif [ "$DISTRO" == "buster" ] ; then - sudo apt-get -y install libzmq5-dev libzmq5 + sudo apt-get -y install libzmq3-dev libzmq5 fi # this will install boost, cmake and a lot more |