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 e019b65 commit 3070376Copy full SHA for 3070376
src/SPC/builder/linux/SystemUtil.php
@@ -251,7 +251,7 @@ public static function getExtraRuntimeObjects(): string
251
foreach ($objects as $obj) {
252
$located = null;
253
foreach ($paths as $base) {
254
- $output = shell_exec("find {$base} -name {$obj} -print -quit 2>/dev/null");
+ $output = shell_exec("find {$base} -name {$obj} 2>/dev/null | grep -v '/32/' | head -n 1");
255
$line = trim((string) $output);
256
if ($line !== '') {
257
$located = $line;
0 commit comments