From 04432cd1c4a95e1ef5ca7acd6f4f6cae69ea8429 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 20 May 2024 15:07:52 +0200 Subject: [PATCH] deploy libmpv only if neeeded --- resources/scripts/github-actions/build-windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts/github-actions/build-windows.ps1 b/resources/scripts/github-actions/build-windows.ps1 index e985702fa..70dcc262e 100755 --- a/resources/scripts/github-actions/build-windows.ps1 +++ b/resources/scripts/github-actions/build-windows.ps1 @@ -176,7 +176,7 @@ Copy-Item -Path "$zlib_path\zlib1.dll" -Destination ".\app\" # Copy debug symbols. Copy-Item -Path ".\src\librssguard\rssguard.pdb" -Destination ".\app\" -if ($use_webengine -eq "ON") { +if ($use_libmpv -eq "ON") { # Copy libmpv and yt-dlp. Copy-Item -Path "$libmpv_path\libmpv*.dll" -Destination ".\app\" Copy-Item -Path "$ytdlp_path" -Destination ".\app\"