2021-04-17 11:23:41 +02:00
|
|
|
|
#!/usr/bin/pwsh
|
2020-12-29 15:14:21 +01:00
|
|
|
|
<#
|
2021-04-07 15:17:49 +02:00
|
|
|
|
.SYNTAX clone-repos.ps1 [<target-dir>]
|
2021-03-22 20:10:18 +01:00
|
|
|
|
.DESCRIPTION clones well-known Git repositories into the current/given directory.
|
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-12-01 12:24:56 +01:00
|
|
|
|
|
2021-02-28 18:49:53 +01:00
|
|
|
|
param($TargetDir = "$PWD")
|
|
|
|
|
|
2021-02-13 10:26:14 +01:00
|
|
|
|
try {
|
2021-04-17 11:29:32 +02:00
|
|
|
|
$Null = (git --version)
|
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
2020-12-01 12:24:56 +01:00
|
|
|
|
|
2021-02-13 10:26:14 +01:00
|
|
|
|
$PathToRepo = "$PSScriptRoot/.."
|
2021-01-20 16:11:38 +01:00
|
|
|
|
$Table = import-csv "$PathToRepo/Data/repos.csv"
|
|
|
|
|
|
2021-02-28 18:49:53 +01:00
|
|
|
|
set-location $TargetDir
|
2021-01-20 16:11:38 +01:00
|
|
|
|
foreach($Row in $Table) {
|
|
|
|
|
$URL = $Row.URL
|
2021-01-21 15:19:24 +01:00
|
|
|
|
$Directory = $Row.Directory
|
2021-02-22 08:19:03 +01:00
|
|
|
|
if (Test-Path $Directory) {
|
2021-04-17 20:05:39 +02:00
|
|
|
|
"Skipping existing $Directory..."
|
2021-01-21 15:19:24 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
2021-04-17 20:05:39 +02:00
|
|
|
|
"⏳ Cloning $URL..."
|
2021-02-13 10:26:14 +01:00
|
|
|
|
& git clone --recurse-submodules $URL
|
2021-02-15 12:00:23 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git clone $URL' failed" }
|
2021-04-17 20:05:39 +02:00
|
|
|
|
""
|
2020-12-01 12:24:56 +01:00
|
|
|
|
}
|
2020-12-09 10:30:55 +01:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-02-15 12:00:23 +01:00
|
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|