Skip to content

Commit

Permalink
Forgot to add test for "*" as that is now a legal "target", meaning a…
Browse files Browse the repository at this point in the history
…ll targets.
  • Loading branch information
kaby76 committed Jan 16, 2025
1 parent f5dada0 commit 8d52e86
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions _scripts/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ function Get-ChangedGrammars {
if ($t -eq '+all') { $yes = $true }
if ($t -eq "-$target") { $yes = $false }
if ($t -eq $target) { $yes = $true }
if ($t -eq "*") { $yes = true }
}
if (! $yes) {
Set-Location "$old"
Expand Down

0 comments on commit 8d52e86

Please sign in to comment.