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 a191c13 commit 05f3abeCopy full SHA for 05f3abe
src/SPC/builder/linux/LinuxBuilder.php
@@ -330,7 +330,7 @@ protected function buildEmbed(): void
330
331
$target = "{$libDir}/{$realLibName}";
332
if (file_exists($target)) {
333
- [, $output] = shell()->execWithResult("readelf -d " . escapeshellarg($target));
+ [, $output] = shell()->execWithResult('readelf -d ' . escapeshellarg($target));
334
$output = join("\n", $output);
335
if (preg_match('/SONAME.*\[(.+)\]/', $output, $sonameMatch)) {
336
$currentSoname = $sonameMatch[1];
0 commit comments