From 39320c65b0e4d1ec8f74f0bb0231e92de023327a Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 16 Mar 2017 10:59:39 -0300 Subject: Provision: more fixes --- provision/desktop-basic | 2 +- provision/development | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'provision') diff --git a/provision/desktop-basic b/provision/desktop-basic index cb68e44..6dacd4f 100755 --- a/provision/desktop-basic +++ b/provision/desktop-basic @@ -38,7 +38,7 @@ $APT_INSTALL git if [ ! -e "apps" ]; then git clone --recursive https://git.fluxo.info/rhatto/apps else - ( cd apps && git pull && git submodule update --init ) + ( cd apps &> /dev/null && git pull && git submodule update --init ) fi apps/inception init diff --git a/provision/development b/provision/development index c72c491..ee02b92 100755 --- a/provision/development +++ b/provision/development @@ -32,10 +32,10 @@ sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get autoremove -y && $APT_INSTALL git # Tools -if [ ! -e "$apps" ]; then +if [ ! -e "apps" ]; then git clone --recursive https://git.fluxo.info/rhatto/apps else - ( cd apps && git pull && git submodule update --init ) + ( cd apps &> /dev/null && git pull && git submodule update --init ) fi apps/inception init -- cgit v1.2.3