From 625bfd1bec3832bffb0181d2b4870ca9729e4f09 Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Thu, 26 Jun 2025 11:18:34 +0700 Subject: [PATCH] don't escape --- src/SPC/builder/linux/SystemUtil.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SPC/builder/linux/SystemUtil.php b/src/SPC/builder/linux/SystemUtil.php index 41095e22..018a22c5 100644 --- a/src/SPC/builder/linux/SystemUtil.php +++ b/src/SPC/builder/linux/SystemUtil.php @@ -255,7 +255,7 @@ class SystemUtil } } if ($located) { - $found[] = escapeshellarg($located); + $found[] = $located; } }