From 3ed1abf823cd5349b715a3e6bfae239f20256dc7 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Sat, 14 Mar 2026 12:56:08 -0400 Subject: [PATCH] Fix Path parameter default value in Example05.ps1 --- Examples/Example05.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/Example05.ps1 b/Examples/Example05.ps1 index 6d658df..180fff1 100644 --- a/Examples/Example05.ps1 +++ b/Examples/Example05.ps1 @@ -9,7 +9,7 @@ [CmdletBinding()] param ( - [System.IO.DirectoryInfo] $Path = Get-Location, + [System.IO.DirectoryInfo] $Path = (Get-Location).Path, [string] $Format = 'png' )