build_lib_path is better

This commit is contained in:
DubbleClick
2025-06-27 22:53:04 +07:00
parent b6240f16fb
commit 4c8a173213
2 changed files with 3 additions and 3 deletions

View File

@@ -340,7 +340,7 @@ class LinuxBuilder extends UnixBuilderBase
chdir($cwd);
}
if (!$this->getOption('no-strip', false) && file_exists(BUILD_LIB_PATH . '/' . $realLibName)) {
shell()->cd(BUILD_LIB_PATH)->exec("strip --strip-all $realLibName");
shell()->cd(BUILD_LIB_PATH)->exec("strip --strip-all {$realLibName}");
}
$this->patchPhpScripts();
}