mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-25 05:26:47 +01:00
Improve the output
This commit is contained in:
parent
6f9eb23523
commit
567a0a4e69
@ -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 $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