Skip to content

Commit

Permalink
fix:(installer): package web player (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
thenextman authored Jun 18, 2024
1 parent 4f89688 commit bbee301
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ci/tlk.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,7 @@ class TlkRecipe
switch ($this.Product) {
"gateway" {
Merge-Tokens -TemplateFile $RulesTemplate -Tokens @{
root_path = $this.SourcePath
dgateway_executable = $DGatewayExecutable
dgateway_webclient = $DGatewayWebClient
platform_dir = $InputPackagePath
Expand Down
1 change: 1 addition & 0 deletions package/Linux/gateway/template/rules
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ override_dh_install:
dh_install
mkdir -p $$(pwd)/debian/devolutions-gateway/usr/share/devolutions-gateway/webapp
cp -r {{ dgateway_webclient }} $$(pwd)/debian/devolutions-gateway/usr/share/devolutions-gateway/webapp
cp -r {{ root_path }}/webapp/player $$(pwd)/debian/devolutions-gateway/usr/share/devolutions-gateway/webapp
override_dh_shlibdeps:
{{ dh_shlibdeps }}
3 changes: 2 additions & 1 deletion package/WindowsManaged/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ static void Main()
{
Dirs = new Dir[]
{
new("client", new Files($@"{DevolutionsWebClientPath}\*.*"))
new("client", new Files($@"{DevolutionsWebClientPath}\*.*")),
new("player", new Files(@"..\..\webapp\player\*.*"))
}
}
}
Expand Down

0 comments on commit bbee301

Please sign in to comment.