mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-09-09 06:14:10 +07:00
Bump version to 1.11.4
Update Node.js dependencies Fix build error in install.ts Add config to generate types Add bugs, directories, files and types entries in package.json
This commit is contained in:
6
dist/index.js
vendored
6
dist/index.js
vendored
@ -456,11 +456,11 @@ async function run() {
|
||||
case 'darwin':
|
||||
case 'linux':
|
||||
script_path = await build(os_version + '.sh', version, os_version);
|
||||
await exec_1.exec('bash ' + script_path + ' ' + version + ' ' + __dirname);
|
||||
await (0, exec_1.exec)('bash ' + script_path + ' ' + version + ' ' + __dirname);
|
||||
break;
|
||||
case 'win32':
|
||||
script_path = await build('win32.ps1', version, os_version);
|
||||
await exec_1.exec('pwsh ' + script_path + ' ' + version + ' ' + __dirname);
|
||||
await (0, exec_1.exec)('pwsh ' + script_path + ' ' + version + ' ' + __dirname);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -469,7 +469,7 @@ async function run() {
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
core.setFailed(error.message);
|
||||
core.setFailed(error);
|
||||
}
|
||||
}
|
||||
exports.run = run;
|
||||
|
Reference in New Issue
Block a user