We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a83c6d commit ecfe984Copy full SHA for ecfe984
1 file changed
.github/workflows/viewer-qt.yml
@@ -100,7 +100,12 @@ jobs:
100
}
101
102
103
- Copy-Item -LiteralPath (Join-Path $qtPluginDir "platforms/libqxcb.so") -Destination "$package/plugins/platforms" -Force
+ $xcbPlugin = Get-ChildItem $qtPluginDir -Recurse -File -Filter "libqxcb.so" | Select-Object -First 1
104
+ if (-not $xcbPlugin) {
105
+ throw "Missing libqxcb.so under '$qtPluginDir'"
106
+ }
107
+
108
+ Copy-Item -LiteralPath $xcbPlugin.FullName -Destination "$package/plugins/platforms" -Force
109
110
@"
111
#!/usr/bin/env bash
0 commit comments