Improve clone-repos.ps1

This commit is contained in:
Markus Fleschutz 2021-05-26 19:47:00 +02:00
parent 6e031bf3ba
commit fc97a6054b
2 changed files with 27 additions and 26 deletions

View File

@ -1,21 +1,21 @@
Directory,URL
"base256unicode", "https://github.com/fleschutz/base256unicode"
"bazel", "https://github.com/bazelbuild/bazel"
"cmake", "https://github.com/Kitware/CMake"
"cmatrix", "https://github.com/abishekvashok/cmatrix"
"cmark", "https://github.com/commonmark/cmark"
"CWTS", "https://github.com/fleschutz/CWTS"
"elasticsearch", "https://github.com/elastic/elasticsearch"
"grafana", "https://github.com/grafana/grafana"
"llvm", "https://github.com/llvm/llvm-project"
"ninja", "git://github.com/ninja-build/ninja.git"
"opencv", "https://github.com/opencv/opencv"
"OSMA", "https://github.com/fleschutz/OSMA"
"PowerShell", "https://github.com/fleschutz/PowerShell"
"LSS", "https://github.com/fleschutz/LSS"
"protobuf", "https://github.com/protocolbuffers/protobuf"
"smartmontools", "https://github.com/smartmontools/smartmontools"
"tensorflow", "https://github.com/tensorflow/tensorflow"
"tinycc", "https://github.com/TinyCC/tinycc"
"voice2json", "https://github.com/synesthesiam/voice2json"
"zfs", "https://github.com/openzfs/zfs"
Directory,Branch,URL
base256unicode, master, "https://github.com/fleschutz/base256unicode"
bazel, master, "https://github.com/bazelbuild/bazel"
cmake, master, "https://github.com/Kitware/CMake"
cmatrix, master, "https://github.com/abishekvashok/cmatrix"
cmark, master, "https://github.com/commonmark/cmark"
CWTS, master, "https://github.com/fleschutz/CWTS"
elasticsearch, master, "https://github.com/elastic/elasticsearch"
grafana, master, "https://github.com/grafana/grafana"
llvm, master, "https://github.com/llvm/llvm-project"
ninja, master, "git://github.com/ninja-build/ninja.git"
opencv, master, "https://github.com/opencv/opencv"
OSMA, master, "https://github.com/fleschutz/OSMA"
PowerShell, master, "https://github.com/fleschutz/PowerShell"
LSS, master, "https://github.com/fleschutz/LSS"
protobuf, master, "https://github.com/protocolbuffers/protobuf"
smartmontools, master, "https://github.com/smartmontools/smartmontools"
tensorflow, master, "https://github.com/tensorflow/tensorflow"
tinycc, master, "https://github.com/TinyCC/tinycc"
voice2json, master, "https://github.com/synesthesiam/voice2json"
zfs, master, "https://github.com/openzfs/zfs"

Can't render this file because it has a wrong number of fields in line 2.

View File

@ -19,14 +19,15 @@ try {
[int]$Count = 0
foreach($Row in $Table) {
$Directory = $Row.Directory
$Branch = $Row.Branch
$URL = $Row.URL
$DirName = $Row.Directory
if (test-path "$ParentDir/$DirName" -pathType container) {
"📂$DirName exists already, skipping..."
if (test-path "$ParentDir/$Directory" -pathType container) {
"📂$Directory exists already, skipping..."
continue
}
"⏳ Cloning 📂$DirName from $URL..."
& git clone --recurse-submodules "$URL" "$ParentDir/$DirName"
"🢃 Cloning 📂$Directory from $URL, $Branch branch..."
& git clone --branch "$Branch" --recurse-submodules "$URL" "$ParentDir/$Directory"
if ($lastExitCode -ne "0") { throw "'git clone $URL' failed" }
$Count++
}