Skip to content

Commit 5668b18

Browse files
authored
fix(dgw): fix RPM webapp directories installed under wrong names (#1722)
fpm installs a source directory *by name* inside the destination when given a bare directory path. Specifying explicit target paths ensures webapp/client and webapp/player are consistent with the DEB package. This is identical to the commit 1cbb8b9, but targets the currently active code path found in tlk.ps1.
1 parent d51d0c4 commit 5668b18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/tlk.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,8 +890,8 @@ class TlkRecipe
890890

891891
if ($this.Product -eq "gateway") {
892892
$FpmArgs += @(
893-
"$DGatewayWebClient=/usr/share/devolutions-gateway/webapp",
894-
"$DGatewayWebPlayer=/usr/share/devolutions-gateway/webapp",
893+
"$DGatewayWebClient=/usr/share/devolutions-gateway/webapp/client",
894+
"$DGatewayWebPlayer=/usr/share/devolutions-gateway/webapp/player",
895895
"$DGatewayLibXmf=/usr/lib/devolutions-gateway/libxmf.so"
896896
)
897897
}

0 commit comments

Comments
 (0)