aboutsummaryrefslogtreecommitdiffhomepage
path: root/installer.sh
diff options
context:
space:
mode:
authorSpacelord <Spacelord09@users.noreply.github.com>2019-12-06 20:04:56 +0100
committerSpacelord <Spacelord09@users.noreply.github.com>2019-12-06 20:04:56 +0100
commit0e7645ddbd3dfa20ccc246c4aa50a3299fdb708e (patch)
treec219344fa7caf2496c84ecfa9c527a890620ba6c /installer.sh
parent2cb91753b2cab927fca9107128519872ac70665d (diff)
downloadmidimonster-0e7645ddbd3dfa20ccc246c4aa50a3299fdb708e.tar.gz
midimonster-0e7645ddbd3dfa20ccc246c4aa50a3299fdb708e.tar.bz2
midimonster-0e7645ddbd3dfa20ccc246c4aa50a3299fdb708e.zip
Change $makeargs to "all"
Diffstat (limited to 'installer.sh')
-rw-r--r--installer.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer.sh b/installer.sh
index fa898fb..bf2775c 100644
--- a/installer.sh
+++ b/installer.sh
@@ -8,7 +8,7 @@ script_path="`cd $0; pwd`" # Script dir
tmp_path=$(mktemp -d) # Repo download path
Iversion="v0.2" # (fallback version if )
-makeargs=full # Build args
+makeargs=all # Build args
VAR_DESTDIR="" # Unused
VAR_PREFIX="/usr"
@@ -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 -y;
echo "Done.";
else
echo ""$t" already installed!"