diff options
Diffstat (limited to 'provision/development')
-rwxr-xr-x | provision/development | 4 |
1 files changed, 2 insertions, 2 deletions
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 |