From 5c156667ef869088f51c3251fbad0c475f8177c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Thu, 19 Mar 2026 14:10:28 +0900 Subject: [PATCH] fix(dgw): fix RPM webapp directories installed under wrong names 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. --- ci/tlk.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/tlk.ps1 b/ci/tlk.ps1 index fb6df9588..40b5ad392 100755 --- a/ci/tlk.ps1 +++ b/ci/tlk.ps1 @@ -890,8 +890,8 @@ class TlkRecipe if ($this.Product -eq "gateway") { $FpmArgs += @( - "$DGatewayWebClient=/usr/share/devolutions-gateway/webapp", - "$DGatewayWebPlayer=/usr/share/devolutions-gateway/webapp", + "$DGatewayWebClient=/usr/share/devolutions-gateway/webapp/client", + "$DGatewayWebPlayer=/usr/share/devolutions-gateway/webapp/player", "$DGatewayLibXmf=/usr/lib/devolutions-gateway/libxmf.so" ) }