Skip to content

Commit

Permalink
Fix: release script failed to pack sswinservice.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
amorphobia authored and zonyitoo committed May 12, 2024
1 parent 3dcadae commit 676cae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build-host-release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ $CompressParam = @{
LiteralPath = "sslocal.exe", "ssserver.exe", "ssurl.exe", "ssmanager.exe", "ssservice.exe"
DestinationPath = "${PackagePath}"
}
if (${Features} -contains "winservice") {
if ((${Features}).Contains("winservice")) {
$CompressParam.LiteralPath += "sswinservice.exe"
}
Compress-Archive @CompressParam
Expand Down

0 comments on commit 676cae9

Please sign in to comment.