Skip to content

Commit 907041d

Browse files
committed
fix build failing silently
1 parent 93f1c6f commit 907041d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.build/Bootstrap.ps1

+1-1
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

+1-1
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

+1-1
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
}

0 commit comments

Comments
 (0)