mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-20 07:35:10 +00:00
Correct negative logic for powershell
This commit is contained in:
parent
5ea9da8d05
commit
e2da44f4ef
@ -3,7 +3,7 @@ if (!$args[0])
|
|||||||
throw "Must supply dotnet version argument"
|
throw "Must supply dotnet version argument"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Test-Path "../nuget.config")
|
if (-Not (Test-Path "../nuget.config"))
|
||||||
{
|
{
|
||||||
throw "nuget file not generated correctly"
|
throw "nuget file not generated correctly"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user