We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d032986 commit 670755eCopy full SHA for 670755e
1 file changed
.github/workflows/release.yml
@@ -188,12 +188,14 @@ jobs:
188
exit 1
189
}
190
191
- # Copy Plugins
192
- $gstPlugins = "C:\gstreamer\1.0\mingw_x86_64\lib\gstreamer-1.0"
193
- if (Test-Path $gstPlugins) {
+ # Copy Plugins
+ $gstPlugins = Join-Path $gstRoot "lib\gstreamer-1.0"
+ if (Test-Path $gstPlugins) {
194
New-Item -ItemType Directory -Path dist/lib/gstreamer-1.0 -Force
195
Copy-Item "$gstPlugins\*.dll" -Destination dist/lib/gstreamer-1.0 -Force
196
- }
+ } else {
197
+ New-Item -ItemType Directory -Path dist/lib/gstreamer-1.0 -Force
198
+ }
199
# Copy Scanner (Check libexec)
200
$gstLibexec = Join-Path $gstRoot "libexec\gstreamer-1.0"
201
$scannerCandidates = @(
0 commit comments