Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 21e820a

Browse files
committed
Fix build errors
1 parent 1169dac commit 21e820a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.build/Common.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Install-Chocolatey()
2424

2525
function Install-Psake()
2626
{
27-
if(!(Test-Path $env:ChocolateyInstall\lib\Psake*))
27+
if(!(Test-Path $env:ChocolateyInstall\lib\Psake\tools\Psake*))
2828
{
2929
choco install psake -y
3030
}

Titanium.Web.Proxy/Network/CertificateManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ internal CertificateEngine Engine
5353

5454
if (certEngine == null)
5555
{
56-
certEngine = engine == CertificateEngine.BouncyCastle ? (ICertificateMaker)new BCCertificateMaker() : new WinCertificateMaker();
56+
certEngine = engine == CertificateEngine.BouncyCastle ? (ICertificateMaker)new BCCertificateMaker(exceptionFunc) : new WinCertificateMaker(exceptionFunc);
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)