From 022fdb2fc5b8ed2d78c0cac972fe4d9cd5f2d7d4 Mon Sep 17 00:00:00 2001 From: henderkes Date: Mon, 29 Dec 2025 23:58:54 +0100 Subject: [PATCH] fix no-strip --- src/SPC/builder/unix/UnixBuilderBase.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/SPC/builder/unix/UnixBuilderBase.php b/src/SPC/builder/unix/UnixBuilderBase.php index d98059cb..e2507f1f 100644 --- a/src/SPC/builder/unix/UnixBuilderBase.php +++ b/src/SPC/builder/unix/UnixBuilderBase.php @@ -145,11 +145,10 @@ abstract class UnixBuilderBase extends BuilderBase throw new SPCInternalException("Deploy failed. Cannot find file after copy: {$dst}"); } - // extract debug info - $this->extractDebugInfo($dst); - - // strip if (!$this->getOption('no-strip')) { + // extract debug info + $this->extractDebugInfo($dst); + // extra strip $this->stripBinary($dst); }