From e37bf59df68047e592e86c04996d3b94bf3d8329 Mon Sep 17 00:00:00 2001 From: Christoph Distefano Date: Mon, 25 Apr 2022 09:13:28 +0200 Subject: [PATCH] Set correct Get-Content Path param in Sample_Script.ps1 --- Examples/Sample_Script.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/Sample_Script.ps1 b/Examples/Sample_Script.ps1 index e086cf7b..2674e860 100644 --- a/Examples/Sample_Script.ps1 +++ b/Examples/Sample_Script.ps1 @@ -54,7 +54,7 @@ Configuration ScriptExample { } return @{ - Result = Get-Content -Path $fileContent + Result = Get-Content -Path $using:filePath } } }