From d396e06e4e211c477f6b172f3ee3fd570edd2a08 Mon Sep 17 00:00:00 2001 From: David Todd Date: Mon, 11 Jan 2021 22:32:06 -0600 Subject: [PATCH] remove clone depth --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 028cde3..caca360 100755 --- a/install.sh +++ b/install.sh @@ -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"