Skip to content

Commit 91ed150

Browse files
committed
Fix script bug with LiteralPath
1 parent 0e96937 commit 91ed150

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/New-Parser.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ process {
106106
if ($Path) {
107107
$inputs = Get-Item -Path $Path
108108
} else {
109-
$inputs = Get-Item -Path $LiteralPath
109+
$inputs = Get-Item -LiteralPath $LiteralPath
110110
}
111111

112112
foreach ($file in $inputs)

scripts/New-ShellCommand.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ process {
105105
if ($Path) {
106106
$inputs = Get-Item -Path $Path
107107
} else {
108-
$inputs = Get-Item -Path $LiteralPath
108+
$inputs = Get-Item -LiteralPath $LiteralPath
109109
}
110110

111111
foreach ($file in $inputs)

0 commit comments

Comments
 (0)