Skip to content

Commit b190b71

Browse files
committed
Update FetchLatestBuild.ps1 script to look for Host dll instead of exe
1 parent 087f583 commit b190b71

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/FetchLatestBuild.ps1

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,13 @@ function Install-BuildPackage($packageName, $extension) {
3838
mkdir $binariesToSignPath -Force | Out-Null
3939
cp "$packageContentPath\lib\net45\$packageName.$extension" -Force -Destination $binariesToSignPath
4040

41-
# Don't forget the x86 exe
42-
if ($extension -eq "exe") {
43-
cp "$packageContentPath\lib\net45\$packageName.x86.$extension" -Force -Destination $binariesToSignPath
44-
}
45-
4641
Write-Output "Extracted package $packageName ($buildVersion)"
4742
}
4843

4944
# Pull the build packages from AppVeyor
5045
Install-BuildPackage "Microsoft.PowerShell.EditorServices" "dll"
5146
Install-BuildPackage "Microsoft.PowerShell.EditorServices.Protocol" "dll"
52-
Install-BuildPackage "Microsoft.PowerShell.EditorServices.Host" "exe"
47+
Install-BuildPackage "Microsoft.PowerShell.EditorServices.Host" "dll"
5348

5449
# Open the BinariesToSign folder
5550
& start $binariesToSignPath

0 commit comments

Comments
 (0)