mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-08-25 23:14:06 +07:00
Remove call to getManifestURL unless needed in utils.parseVersion
This commit is contained in:
@ -58,10 +58,11 @@ export async function getManifestURL(): Promise<string> {
|
||||
* @param version
|
||||
*/
|
||||
export async function parseVersion(version: string): Promise<string> {
|
||||
const manifest = await getManifestURL();
|
||||
switch (true) {
|
||||
case /^(latest|nightly|\d+\.x)$/.test(version):
|
||||
return JSON.parse((await fetch.fetch(manifest))['data'])[version];
|
||||
return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[
|
||||
version
|
||||
];
|
||||
default:
|
||||
switch (true) {
|
||||
case version.length > 1:
|
||||
|
Reference in New Issue
Block a user