mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-26 08:38:51 +01:00
Merge branch 'master' of github.com:fleschutz/PowerShell
This commit is contained in:
commit
139ceab42f
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user