From f9117a8e5a9f898895ab70b5846e6e3d7210f721 Mon Sep 17 00:00:00 2001 From: Niels Geens Date: Tue, 20 May 2025 21:25:25 +0200 Subject: [PATCH] Add recursive flag to git clone in bootstrap --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 8bc5a68..b4467ff 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -81,7 +81,7 @@ mkdir -p "/root/venvs" # Clone SIA repository if [ ! -d "/root/sia" ]; then echo "Cloning SIA repository..." - git clone "https://$SIA_REPO_USER:$SIA_REPO_PAT@${SIA_REPO_URL#https://}" "/root/sia" + git clone --recursive "https://$SIA_REPO_USER:$SIA_REPO_PAT@${SIA_REPO_URL#https://}" "/root/sia" echo "Configuring git user and email..." cd "/root/sia"