diff --git a/AU/Plugins/Report/markdown_funcs.ps1 b/AU/Plugins/Report/markdown_funcs.ps1 index 5884ca7a..cac52a3d 100644 --- a/AU/Plugins/Report/markdown_funcs.ps1 +++ b/AU/Plugins/Report/markdown_funcs.ps1 @@ -32,7 +32,7 @@ function md_table($result, $Columns, $MaxErrorLength=150) { $r = "[{0}](#{1})" -f $_.Updated, $_.Name.Replace('.','').ToLower() $r += if ($_.Updated) { ' 🔸' } $r += if ($_.Streams) { ' 🕄' } - $r += if (ls -Recurse VERIFICATION.txt) { ' 🎁' } + $r += if (ls $_.Path -Recurse -Include VERIFICATION.txt) { ' 🎁' } $r } },