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

Commit 95a8877

Browse files
Merge pull request #338 from justcoding121/develop
3.0.194+
2 parents c7ff73a + 21e820a commit 95a8877

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.build/Bootstrap.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Install-Psake
1414

1515
$psakeDirectory = (Resolve-Path $env:ChocolateyInstall\lib\Psake*)
1616

17-
Import-Module (Join-Path $psakeDirectory "tools\Psake.psm1")
17+
Import-Module (Join-Path $psakeDirectory "tools\Psake\Psake.psm1")
1818

1919
if($Help)
2020
{

.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
}

.build/default.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Task Restore-Packages {
5454
}
5555

5656
Task Install-MSBuild {
57-
if(!(Test-Path $MSBuild14))
57+
if(!(Test-Path $MSBuild))
5858
{
5959
cinst microsoft-build-tools -y
6060
}

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)