Correct negative logic for powershell

This commit is contained in:
Zachary Eisinger 2020-09-02 10:54:57 -07:00
parent 5ea9da8d05
commit e2da44f4ef

View File

@ -3,7 +3,7 @@ if (!$args[0])
throw "Must supply dotnet version argument"
}
if (!Test-Path "../nuget.config")
if (-Not (Test-Path "../nuget.config"))
{
throw "nuget file not generated correctly"
}