aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2018-10-18 21:06:20 +0200
committerJakob Stendahl <jakob.stendahl@outlook.com>2018-10-18 21:06:20 +0200
commit7ef7e9efc4d58cc1ed9a91b96bfc63a78bd0473d (patch)
tree8cddb5b138af4189bfa1a9092170d8fcdc17bc39
parentabb69ee9cd4139c498ef794480e21446ce8b60bf (diff)
downloadLuxcena-Neo-7ef7e9efc4d58cc1ed9a91b96bfc63a78bd0473d.tar.gz
Luxcena-Neo-7ef7e9efc4d58cc1ed9a91b96bfc63a78bd0473d.zip
:construction: Make all output appear in logfile
-rwxr-xr-xbin/install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/install.sh b/bin/install.sh
index 74b2763..2ccb7e0 100755
--- a/bin/install.sh
+++ b/bin/install.sh
@@ -50,8 +50,8 @@ function dlgYN() {
dlgYN ". Update your system" res
if [ $res -eq 1 ]; then
tput sc
- apt-get -y -qq update &>> $LOG || die
- apt-get -y -qq upgrade &>> $LOG || die
+ apt-get -y update &>> $LOG || die
+ apt-get -y upgrade &>> $LOG || die
tput rc; tput ed
fi
@@ -59,7 +59,7 @@ fi
dlgYN ". Install required packages" res
if [ $res -eq 1 ]; then
tput sc
- apt-get -y -qq install nodejs scons python-dev swig &>> $LOG || die
+ apt-get -y install nodejs scons python-dev swig &>> $LOG || die
if [ $? -eq 0 ]; then
tput rc; tput ed
printf "✓"