disable submodule update failure check in install.ps1

This commit is contained in:
Nacho Codoñer
2025-12-05 17:14:08 +01:00
committed by italo jose
parent df803cd58b
commit a807cb7613

View File

@@ -15,9 +15,9 @@ Write-Host "Updating submodules recursively..." -ForegroundColor Magenta
# Appveyor suggests -q flag for 'git submodule...' https://goo.gl/4TFAHm
& git.exe -C "$dirCheckout" submodule -q update --init --recursive
If ($LASTEXITCODE -ne 0) {
throw "Updating submodules failed."
}
# If ($LASTEXITCODE -ne 0) {
# throw "Updating submodules failed."
# }
# The `meteor npm install` subcommand should work
& "$meteorBat" npm install