should fix exiting without dotnet

This commit is contained in:
foxnne 2019-09-21 20:44:36 -05:00
parent 5920d62e4d
commit 38d7b66ac3

View File

@ -11,8 +11,9 @@ function checkDotnet()
catch [System.Management.Automation.CommandNotFoundException]
{
Write-Output "ERROR: Dotnet is not installed. Please install dotnet to download the t4 tool."
exit
return 0;
}
return 1;
}
function installT4 ()