diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2018-10-18 21:06:20 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2018-10-18 21:06:20 +0200 |
commit | 7ef7e9efc4d58cc1ed9a91b96bfc63a78bd0473d (patch) | |
tree | 8cddb5b138af4189bfa1a9092170d8fcdc17bc39 /bin/install.sh | |
parent | abb69ee9cd4139c498ef794480e21446ce8b60bf (diff) | |
download | Luxcena-Neo-7ef7e9efc4d58cc1ed9a91b96bfc63a78bd0473d.tar.gz Luxcena-Neo-7ef7e9efc4d58cc1ed9a91b96bfc63a78bd0473d.zip |
:construction: Make all output appear in logfile
Diffstat (limited to 'bin/install.sh')
-rwxr-xr-x | bin/install.sh | 6 |
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 "✓" |