diff --git a/install.sh b/install.sh index 49adcf0..6a1f4cc 100755 --- a/install.sh +++ b/install.sh @@ -60,7 +60,11 @@ function install_git { if [[ -d ${DESTDIR}/.git ]] ; then ( cd ${DESTDIR} ; git pull -q ) else - git clone ${REPO} ${DESTDIR} + if [[ ${MINIMAL} -eq 1 ]] ; then + git clone --depth 1 ${REPO} ${DESTDIR} + else + git clone ${REPO} ${DESTDIR} + fi fi } diff --git a/private_dotfiles/ssh/config b/private_dotfiles/ssh/config index 7d37a0c..e2a6714 100644 Binary files a/private_dotfiles/ssh/config and b/private_dotfiles/ssh/config differ