diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-04-20 08:40:36 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-04-20 08:40:36 +0200 |
commit | 1caa774f4fe6c5ddbed3b1800db4992b7a1c609d (patch) | |
tree | 1fd500917cf07db429ca58d0a6ef0a25dd63a5ac /installer/debian.sh | |
parent | a14cb8afb8fe340812c28a1eddbba57d6dafac9e (diff) | |
download | mmbtools-aux-1caa774f4fe6c5ddbed3b1800db4992b7a1c609d.tar.gz mmbtools-aux-1caa774f4fe6c5ddbed3b1800db4992b7a1c609d.tar.bz2 mmbtools-aux-1caa774f4fe6c5ddbed3b1800db4992b7a1c609d.zip |
Fix debian install script typo
Diffstat (limited to 'installer/debian.sh')
-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 9845238..5132a2b 100644 --- a/installer/debian.sh +++ b/installer/debian.sh @@ -116,9 +116,9 @@ sudo apt-get -y install build-essential git wget \ python-mako python-requests if [[ "$DISTRO" == "jessie" || "$DISTRO" == "stretch" ]] ; then - sudo apt-get -y vlc-nox + sudo apt-get -y install vlc-nox elif [ "$DISTRO" == "buster" ] ; then - sudo apt-get -y vlc-plugins-base + sudo apt-get -y install vlc-plugins-base fi if [ "$DISTRO" == "jessie" ] ; then |