Commit 21e820ac authored by justcoding121's avatar justcoding121

Fix build errors

parent 1169dacc
...@@ -24,7 +24,7 @@ function Install-Chocolatey() ...@@ -24,7 +24,7 @@ function Install-Chocolatey()
function Install-Psake() function Install-Psake()
{ {
if(!(Test-Path $env:ChocolateyInstall\lib\Psake*)) if(!(Test-Path $env:ChocolateyInstall\lib\Psake\tools\Psake*))
{ {
choco install psake -y choco install psake -y
} }
......
...@@ -53,7 +53,7 @@ namespace Titanium.Web.Proxy.Network ...@@ -53,7 +53,7 @@ namespace Titanium.Web.Proxy.Network
if (certEngine == null) if (certEngine == null)
{ {
certEngine = engine == CertificateEngine.BouncyCastle ? (ICertificateMaker)new BCCertificateMaker() : new WinCertificateMaker(); certEngine = engine == CertificateEngine.BouncyCastle ? (ICertificateMaker)new BCCertificateMaker(exceptionFunc) : new WinCertificateMaker(exceptionFunc);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment