mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-17 22:05:35 +08:00
Compare commits
3 Commits
38ec03fe30
...
97b18e9121
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
97b18e9121 | ||
|
|
ddc9cc2237 | ||
|
|
aff803f334 |
@@ -379,6 +379,11 @@ const craftCommandString = computed(() => {
|
||||
str += 'debug: true\n';
|
||||
}
|
||||
|
||||
if (preBuilt.value) {
|
||||
str += 'download-options:\n';
|
||||
str += ' prefer-pre-built: true\n';
|
||||
}
|
||||
|
||||
str += '{{position_hold}}';
|
||||
|
||||
if (enableUPX.value) {
|
||||
@@ -387,9 +392,6 @@ const craftCommandString = computed(() => {
|
||||
if (zts.value) {
|
||||
str += ' enable-zts: true\n';
|
||||
}
|
||||
if (preBuilt.value) {
|
||||
str += ' prefer-pre-built: true\n';
|
||||
}
|
||||
|
||||
if (!str.endsWith('{{position_hold}}')) {
|
||||
str = str.replace('{{position_hold}}', 'build-options:\n');
|
||||
|
||||
@@ -271,6 +271,7 @@ abstract class UnixBuilderBase extends BuilderBase
|
||||
$releaseInfo = json_decode(Downloader::curlExec(
|
||||
'https://api.github.com/repos/php/frankenphp/releases/latest',
|
||||
hooks: [[CurlHook::class, 'setupGithubToken']],
|
||||
retries: 3,
|
||||
), true);
|
||||
$frankenPhpVersion = $releaseInfo['tag_name'];
|
||||
$libphpVersion = $this->getPHPVersion();
|
||||
|
||||
Reference in New Issue
Block a user