From 63e87dbc2d660bfa95f7f9ffb20c4f5d5ad96eaa Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Thu, 16 Sep 2021 16:49:15 -0600 Subject: [PATCH] explicit recursive tag for when .gitconfig isn't loaded --- setup/linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/linux b/setup/linux index d71ec75..38a37b5 100755 --- a/setup/linux +++ b/setup/linux @@ -23,7 +23,7 @@ SOURCE_ZSH_SUBMODULE() { } INIT() { - git submodule update --init --remote >/dev/null 2>&1 || { + git submodule update --init --remote --recursive >/dev/null 2>&1 || { echo 'unable to initialize required submodules' exit 1 }