1 parent 3999bdb commit 1eab7d9Copy full SHA for 1eab7d9
1 file changed
scripts/cd-repos.ps1
@@ -5,7 +5,7 @@
5
This PowerShell script changes the current working directory to the folder for Git repositories.
6
.EXAMPLE
7
PS> ./cd-repos.ps1
8
- 📂C:\Repos entered (has 33 subfolders)
+ 📂C:\Repos entered, has 33 subfolders.
9
.LINK
10
https://github.com/fleschutz/PowerShell
11
.NOTES
@@ -29,7 +29,7 @@ try {
29
$path = Resolve-Path $path
30
Set-Location "$path"
31
$folders = Get-ChildItem $path -attributes Directory
32
- "📂$path entered (has $($folders.Count) subfolders)"
+ "📂$path entered, has $($folders.Count) subfolders."
33
exit 0 # success
34
} catch {
35
"⚠️ ERROR: $($Error[0])"
0 commit comments