Add recursive flag to git clone in bootstrap

This commit is contained in:
Niels Geens
2025-05-20 21:25:25 +02:00
parent f0c1d7732a
commit f9117a8e5a

View File

@@ -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"