diff options
author | Spacelord <Spacelord09@users.noreply.github.com> | 2019-12-06 20:09:08 +0100 |
---|---|---|
committer | Spacelord <Spacelord09@users.noreply.github.com> | 2019-12-06 20:09:08 +0100 |
commit | 980e3d84c3da1be28d6e46d8f78ae1816961eb9d (patch) | |
tree | 2ca0f8092de7eb9c7b014ae41281172bd5e25812 | |
parent | 0e7645ddbd3dfa20ccc246c4aa50a3299fdb708e (diff) | |
download | midimonster-980e3d84c3da1be28d6e46d8f78ae1816961eb9d.tar.gz midimonster-980e3d84c3da1be28d6e46d8f78ae1816961eb9d.tar.bz2 midimonster-980e3d84c3da1be28d6e46d8f78ae1816961eb9d.zip |
Remove ola from deps
-rw-r--r-- | installer.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer.sh b/installer.sh index bf2775c..6d438a7 100644 --- a/installer.sh +++ b/installer.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################ SETUP ################################################ -deps=(libasound2-dev libevdev-dev liblua5.3-dev libola-dev libjack-jackd2-dev pkg-config libssl-dev gcc make wget git) +deps=(libasound2-dev libevdev-dev liblua5.3-dev libjack-jackd2-dev pkg-config libssl-dev gcc make wget git) user=$(whoami) # for bypassing user check replace "$(whoami)" with "root". script_path="`cd $0; pwd`" # Script dir @@ -25,7 +25,7 @@ for t in ${deps[@]}; do if [ $(dpkg-query -W -f='${Status}' $t 2>/dev/null | grep -c "ok installed") -eq 0 ]; then echo "Installing "$t""; - apt-get install $t -y; + apt-get install $t; echo "Done."; else echo ""$t" already installed!" |