From be820bb0cfb14e0290068671cad2aec09e9e9793 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 27 Mar 2025 08:37:13 +0100 Subject: [PATCH] Updated cd-repos.ps1 --- scripts/cd-repos.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cd-repos.ps1 b/scripts/cd-repos.ps1 index b5b592e3..b4b2c68a 100755 --- a/scripts/cd-repos.ps1 +++ b/scripts/cd-repos.ps1 @@ -5,7 +5,7 @@ This PowerShell script changes the working directory to the folder for Git repositories. .EXAMPLE PS> ./cd-repos.ps1 - 📂C:\Repos + 📂C:\Repos (has 33 subfolders) .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -29,7 +29,7 @@ try { $path = Resolve-Path $path Set-Location "$path" $subfolders = Get-ChildItem $path -attributes Directory - "📂$path entered (has $($subfolders.Count) subfolders)." + "📂$path entered (has $($subfolders.Count) subfolders)" exit 0 # success } catch { "⚠️ Error: $($Error[0])"