diff --git a/.config.tar.xz b/.config.tar.xz index 08d10c9..ab8a77b 100755 Binary files a/.config.tar.xz and b/.config.tar.xz differ diff --git a/arch-install b/arch-install index 8d32665..6c40e17 100755 --- a/arch-install +++ b/arch-install @@ -30,13 +30,14 @@ function minimalinstallation() { } function gitclone() { - cd /opt/ - if [ -d "${repo}" ]; then + if [ -d "/opt/${repo}" ]; then echo "${repo} already exists!!!" - rm -Rv ${repo} + cd /opt/${repo} + git pull + else + git clone ${WEBADDRESS} /opt/${repo} fi - git clone ${WEBADDRESS} - cd / +cd / } function secureumount() {