Update check-symlinks.ps1

This commit is contained in:
Markus Fleschutz 2021-10-01 14:56:16 +02:00 committed by GitHub
parent a4a09819a0
commit f989a99a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,8 @@
.DESCRIPTION
Checks every symlink in a directory tree.
.EXAMPLE
PS> ./check-symlinks C:\MyApp
PS> ./check-symlinks .
0 out of 10 symlinks are broken in 📂/home/markus
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -26,7 +27,7 @@ try {
$path = $_.FullName + "\..\" + ($_ | Select-Object -ExpandProperty Target)
$item = Get-Item $path -ErrorAction Ignore
if (!$item) {
write-warning "Broken symlink: $Symlink -> $Target"
write-warning "Broken symlink $Symlink -> $Target"
$NumBroken++
}
}