Skip to content

Commit 7d7355f

Browse files
authored
Merge pull request #30 from AsBuiltReport/dev
Fix Path parameter default value in Example05.ps1
2 parents 53503f1 + 3ed1abf commit 7d7355f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Examples/Example05.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
[CmdletBinding()]
1111
param (
12-
[System.IO.DirectoryInfo] $Path = Get-Location,
12+
[System.IO.DirectoryInfo] $Path = (Get-Location).Path,
1313
[string] $Format = 'png'
1414
)
1515

0 commit comments

Comments
 (0)