From 0756b603ab1bf753b18739f4367216db95200e64 Mon Sep 17 00:00:00 2001 From: Miodrag Milic Date: Sun, 12 Nov 2017 19:21:36 +0100 Subject: [PATCH] fix --- AU/Plugins/Report/markdown_funcs.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } },