This commit is contained in:
crazywhalecc 2025-10-16 00:59:33 +08:00
parent b62f029da7
commit 9c8fd4d45d
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680

View File

@ -180,7 +180,7 @@ class WindowsBuilder extends BuilderBase
logger()->info('Deploying cgi file');
FileSystem::createDir(BUILD_ROOT_PATH . '\bin');
cmd()->exec('copy ' . escapeshellarg(SOURCE_PATH . '\\php-src\\x64\\Release' . ($this->zts ? '_TS' : '') . '\\php-cgi.exe') . ' ' . escapeshellarg(BUILD_ROOT_PATH . '\bin\php-cgi.exe'));
cmd()->exec('copy ' . escapeshellarg(SOURCE_PATH . '\php-src\x64\Release' . ($this->zts ? '_TS' : '') . '\php-cgi.exe') . ' ' . escapeshellarg(BUILD_ROOT_PATH . '\bin\php-cgi.exe'));
}
public function buildEmbed(): void