mirror of
https://github.com/actions/setup-python.git
synced 2025-04-24 07:22:14 +00:00
Format code
This commit is contained in:
parent
71e2dec535
commit
957735f5bc
1 changed files with 4 additions and 2 deletions
|
@ -207,7 +207,8 @@ export function pypyVersionToSemantic(versionSpec: string) {
|
||||||
|
|
||||||
export function isArchPresentForWindows(item: any, architecture: string) {
|
export function isArchPresentForWindows(item: any, architecture: string) {
|
||||||
architecture = ReplaceX32toX86(architecture);
|
architecture = ReplaceX32toX86(architecture);
|
||||||
return item.files.some((file: any) =>
|
return item.files.some(
|
||||||
|
(file: any) =>
|
||||||
file.arch === architecture && WINDOWS_PLATFORMS.includes(file.platform)
|
file.arch === architecture && WINDOWS_PLATFORMS.includes(file.platform)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -224,7 +225,8 @@ export function isArchPresentForMacOrLinux(
|
||||||
|
|
||||||
export function findAssetForWindows(releases: any, architecture: string) {
|
export function findAssetForWindows(releases: any, architecture: string) {
|
||||||
architecture = ReplaceX32toX86(architecture);
|
architecture = ReplaceX32toX86(architecture);
|
||||||
return releases.files.find((item: any) =>
|
return releases.files.find(
|
||||||
|
(item: any) =>
|
||||||
item.arch === architecture && WINDOWS_PLATFORMS.includes(item.platform)
|
item.arch === architecture && WINDOWS_PLATFORMS.includes(item.platform)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue