mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-22 01:48:20 +02:00
Improve output of clone-repos.ps1
This commit is contained in:
parent
0c543d5fd7
commit
ee93d55dc1
@ -1,33 +1,37 @@
|
|||||||
#!/usr/bin/pwsh
|
#!/usr/bin/pwsh
|
||||||
<#
|
<#
|
||||||
.SYNTAX clone-repos.ps1 [<target-dir>]
|
.SYNTAX clone-repos.ps1 [<parent-dir>]
|
||||||
.DESCRIPTION clones well-known Git repositories into the current/given directory.
|
.DESCRIPTION clones well-known Git repositories under the current/given directory.
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param($TargetDir = "$PWD")
|
param($ParentDir = "$PWD")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (-not(test-path "$TargetDir" -pathType container)) { throw "Can't access directory: $TargetDir" }
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
|
|
||||||
|
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" }
|
||||||
|
|
||||||
$Null = (git --version)
|
$Null = (git --version)
|
||||||
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
||||||
|
|
||||||
$Table = import-csv "$PSScriptRoot/../Data/git-repositories.csv"
|
$Table = import-csv "$PSScriptRoot/../Data/git-repositories.csv"
|
||||||
|
|
||||||
|
[int]$Count = 0
|
||||||
foreach($Row in $Table) {
|
foreach($Row in $Table) {
|
||||||
$URL = $Row.URL
|
$URL = $Row.URL
|
||||||
$Directory = $Row.Directory
|
$Directory = $Row.Directory
|
||||||
if (Test-Path "$TargetDir/$Directory") {
|
if (Test-Path "$ParentDir/$Directory") {
|
||||||
"Skipping existing $Directory..."
|
"Skipping 📂$Directory (exists already) ..."
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
"⏳ Cloning $URL..."
|
"⏳ Cloning $URL..."
|
||||||
& git clone --recurse-submodules "$URL" "$TargetDir/$Directory"
|
& git clone --recurse-submodules "$URL" "$ParentDir/$Directory"
|
||||||
if ($lastExitCode -ne "0") { throw "'git clone $URL' failed" }
|
if ($lastExitCode -ne "0") { throw "'git clone $URL' failed" }
|
||||||
""
|
$Count++
|
||||||
}
|
}
|
||||||
|
"✔️ cloned $Count Git repositories at 📂$ParentDir in $($StopWatch.Elapsed.Seconds) sec."
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user