remove clone depth

This commit is contained in:
David Todd 2021-01-11 22:32:06 -06:00
parent fa1ac68a70
commit d396e06e4e
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ if [ -x "${DOTFILES}/check_for_upgrade.sh" ]; then
else
echo "Cloning dotfiles to ${DOTFILES}"
rm -rf "${DOTFILES}"
git clone --depth=1 --recurse-submodules -j$(nproc) "${GIT_REPO}" "${DOTFILES}"
git clone --recurse-submodules -j$(nproc) "${GIT_REPO}" "${DOTFILES}"
fi
echo "Installing Oh-My-ZSH"