Merge branch 'master' of github.com:fleschutz/PowerShell

This commit is contained in:
Markus Fleschutz 2021-04-18 10:35:02 +02:00
commit 139ceab42f

View File

@ -19,14 +19,14 @@ try {
foreach($Row in $Table) {
$URL = $Row.URL
$Directory = $Row.Directory
write-output ""
if (Test-Path $Directory) {
write-output "Skipping existing $Directory ..."
"Skipping existing $Directory..."
continue
}
write-output "⏳ Cloning from $URL..."
"⏳ Cloning $URL..."
& git clone --recurse-submodules $URL
if ($lastExitCode -ne "0") { throw "'git clone $URL' failed" }
""
}
exit 0
} catch {