mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-10 08:53:23 -04:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
export default function getNormalizedArch (platform: string, arch: string) {
|
|
if (platform === 'win32' && arch === 'ia32') {
|
|
return 'x86'
|
|
}
|
|
if (arch === 'arm') {
|
|
return 'armv7l'
|
|
}
|
|
return arch
|
|
}
|