Updated some scripts

This commit is contained in:
Markus Fleschutz
2025-05-29 09:32:06 +02:00
parent 52b42420f7
commit 29a8c968f8
4 changed files with 17 additions and 21 deletions

View File

@ -5,7 +5,7 @@
This PowerShell script changes the working directory to the folder for Git repositories.
.EXAMPLE
PS> ./cd-repos.ps1
📂C:\Repos (has 33 subfolders)
📂C:\Repos with 33 folders entered.
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -23,13 +23,11 @@ try {
} elseif (Test-Path "/repositories" -pathType container) { $path = "/repositories"
} elseif (Test-Path "~/source/repos" -pathType container) { $path = "~/source/repos" # Visual Studio default
} elseif (Test-Path "D:/Repos" -pathType container) { $path = "D:/Repos" # second HDD
} else {
throw "No folder found for Git repositories (in home or root directory) - Please create one."
}
} else { throw "Found no folder for Git repositories (in home or root directory) - Please create one." }
$path = Resolve-Path $path
Set-Location "$path"
$subfolders = Get-ChildItem $path -attributes Directory
"📂$path entered (has $($subfolders.Count) subfolders)"
$folders = Get-ChildItem $path -attributes Directory
"📂$path with $($folders.Count) folders entered."
exit 0 # success
} catch {
"⚠️ Error: $($Error[0])"