Skip to content

Commit

Permalink
Replace 3 spaces in /D matching with \s+ expression. (#1275)
Browse files Browse the repository at this point in the history
  • Loading branch information
beehunt9r authored Dec 10, 2023
1 parent b64f7ce commit 05f418f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/private/Get-LocalizedYesNo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function Get-LocalizedYesNo {
break
}
}
elseif ($line -match "/D ")
elseif ($line -match "/D\s+")
{
$found = $true
}
Expand Down

0 comments on commit 05f418f

Please sign in to comment.