Skip to content

Commit

Permalink
fix:(installer): package web player on Windows and Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
thenextman committed Jun 18, 2024
1 parent 5b723bf commit 22172d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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 ../../../../webapp/player $$(pwd)/debian/devolutions-gateway/usr/share/devolutions-gateway/webapp
override_dh_shlibdeps:
{{ dh_shlibdeps }}
4 changes: 2 additions & 2 deletions package/WindowsManaged/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ static void Main()
{
Dirs = new Dir[]
{
new("client", new Files($@"{DevolutionsWebClientPath}\*.*"),
new Dir("player", new Files(@"..\..\webapp\player\*.*")))
new("client", new Files($@"{DevolutionsWebClientPath}\*.*")),
new("player", new Files(@"..\..\webapp\player\*.*"))
}
}
}
Expand Down

0 comments on commit 22172d9

Please sign in to comment.