Skip to content

Commit 61dc5a9

Browse files
peterwaldstephentoub
authored andcommitted
Fix ConfigureEvaluationTests script when is not supplied (#6575)
1 parent aa6e9af commit 61dc5a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ConfigureEvaluationTests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if ($Configure -and $Unconfigure) {
3131
Exit 1
3232
}
3333

34-
if (!(Test-Path $ConfigRoot)) {
34+
if (-not $ConfigRoot -or -not (Test-Path $ConfigRoot)) {
3535
$ConfigRoot = "$HOME/.config/dotnet-extensions"
3636
}
3737

0 commit comments

Comments
 (0)