Add missing directory separator

This commit is contained in:
crazywhalecc 2025-06-30 19:41:32 +08:00
parent 88d99a7dea
commit 3965a899c7

View File

@ -151,7 +151,7 @@ class SourcePatcher
foreach ($patches as $patch) { foreach ($patches as $patch) {
logger()->info("Patching micro with {$patch}"); logger()->info("Patching micro with {$patch}");
self::patchFile(SOURCE_PATH . "/php-src{$patch}", SOURCE_PATH . '/php-src'); self::patchFile(SOURCE_PATH . "/php-src/{$patch}", SOURCE_PATH . '/php-src');
} }
return true; return true;