From 8275603fdf5a9255a451a85e553bd4e24ab6468c Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 31 Jul 2024 19:36:09 +0200 Subject: [PATCH] Added my-backups and my-settings repos --- data/{popular-repositories.csv => popular-repos.csv} | 4 +++- scripts/clone-repos.ps1 | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) rename data/{popular-repositories.csv => popular-repos.csv} (92%) diff --git a/data/popular-repositories.csv b/data/popular-repos.csv similarity index 92% rename from data/popular-repositories.csv rename to data/popular-repos.csv index 4fa414db..a039c05f 100644 --- a/data/popular-repositories.csv +++ b/data/popular-repos.csv @@ -13,6 +13,8 @@ jhead, "EXIF tool", "https://github.com/Matthias-Wandel/jhead", leon, "personal assistant", "https://github.com/leon-ai/leon", master, yes, llvm, "compiler", "https://github.com/llvm/llvm-project", main, yes, LSS, "math tool", "git@github.com:fleschutz/LSS.git", main, yes, +my-backups, "backup tool", "git@github.com:fleschutz/my-backups.git", main, yes, +my-settings, "settings", "git@github.com:fleschutz/my-settings.git", main, yes, ninja, "build tool", "https://github.com/ninja-build/ninja", master, yes, opencv, "dev lib", "https://github.com/opencv/opencv", master, yes, PowerShell, "script collection", "git@github.com:fleschutz/PowerShell.git", main, yes, @@ -25,4 +27,4 @@ tensorflow, "AI tool", "https://github.com/tensorflow/tensorfl terminal, "desktop tool", "https://github.com/microsoft/terminal", main, yes, tinycc, "compiler", "https://github.com/TinyCC/tinycc", mob, yes, voice2json, "voice tool", "https://github.com/synesthesiam/voice2json", master, yes, -zfs, "filesystem tool", "https://github.com/openzfs/zfs", master, yes, +zfs, "filesystem tool", "https://github.com/openzfs/zfs", master, yes, \ No newline at end of file diff --git a/scripts/clone-repos.ps1 b/scripts/clone-repos.ps1 index b699ea57..74176beb 100755 --- a/scripts/clone-repos.ps1 +++ b/scripts/clone-repos.ps1 @@ -24,8 +24,8 @@ try { & git --version if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } - Write-Host "⏳ (2) Reading data/popular-repositories.csv... " -noNewline - $table = Import-CSV "$PSScriptRoot/../data/popular-repositories.csv" + Write-Host "⏳ (2) Reading data/popular-repos.csv... " -noNewline + $table = Import-CSV "$PSScriptRoot/../data/popular-repos.csv" $total = $table.count Write-Host "$total repos"