diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 10:56:51 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 10:56:51 -0300 |
commit | 2deba00490f743b9c4b55219ebed7b90550d0900 (patch) | |
tree | 1abd0c0949f8270fa2403dedf57655e88bfea15c /provision/desktop-basic | |
parent | 4478c5bec3f8726204be35a96d0302c45743e29d (diff) | |
download | kvmx-2deba00490f743b9c4b55219ebed7b90550d0900.tar.gz kvmx-2deba00490f743b9c4b55219ebed7b90550d0900.tar.bz2 |
Provision: fix apps folder check
Diffstat (limited to 'provision/desktop-basic')
-rwxr-xr-x | provision/desktop-basic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/provision/desktop-basic b/provision/desktop-basic index 24c71af..cb68e44 100755 --- a/provision/desktop-basic +++ b/provision/desktop-basic @@ -35,7 +35,7 @@ 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 ) |