Skip to content

Commit 1eab7d9

Browse files
committed
Updated cd-repos.ps1
1 parent 3999bdb commit 1eab7d9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/cd-repos.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This PowerShell script changes the current working directory to the folder for Git repositories.
66
.EXAMPLE
77
PS> ./cd-repos.ps1
8-
📂C:\Repos entered (has 33 subfolders)
8+
📂C:\Repos entered, has 33 subfolders.
99
.LINK
1010
https://github.com/fleschutz/PowerShell
1111
.NOTES
@@ -29,7 +29,7 @@ try {
2929
$path = Resolve-Path $path
3030
Set-Location "$path"
3131
$folders = Get-ChildItem $path -attributes Directory
32-
"📂$path entered (has $($folders.Count) subfolders)"
32+
"📂$path entered, has $($folders.Count) subfolders."
3333
exit 0 # success
3434
} catch {
3535
"⚠️ ERROR: $($Error[0])"

0 commit comments

Comments
 (0)