From b9b00b6d095153062c78e95f3fba355fc1a71b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20St=C3=BChmer?= Date: Mon, 8 Apr 2024 23:14:59 +0200 Subject: [PATCH] fix: No init on updates (#7) --- update-solution.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-solution.ps1 b/update-solution.ps1 index b6f2583..a100d91 100644 --- a/update-solution.ps1 +++ b/update-solution.ps1 @@ -2,7 +2,7 @@ param ( ) Write-Output "Updating submodules ..." -git submodule update --init --recursive --remote | Out-Null +git submodule update --recursive --remote | Out-Null . .\eng\scripts\update-solution.ps1