mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-07-30 18:27:46 +07:00
Add PECL support on linux
This commit is contained in:
@ -47,10 +47,14 @@ export async function run() {
|
||||
let script_path: string = '';
|
||||
switch (os_version) {
|
||||
case 'darwin':
|
||||
case 'linux':
|
||||
script_path = await build(os_version + '.sh', version, os_version);
|
||||
await exec('sh ' + script_path + ' ' + version + ' ' + __dirname);
|
||||
break;
|
||||
case 'linux':
|
||||
let pecl: string = await utils.getInput('pecl', false);
|
||||
script_path = await build(os_version + '.sh', version, os_version);
|
||||
await exec('sh ' + script_path + ' ' + version + ' ' + pecl);
|
||||
break;
|
||||
case 'win32':
|
||||
script_path = await build('win32.ps1', version, os_version);
|
||||
await exec(
|
||||
|
Reference in New Issue
Block a user