few more platform names to assist manual run

This commit is contained in:
Igor Klopov 2017-03-14 15:47:29 +03:00
parent a592ff936c
commit 4cfa4e0443

View File

@ -16,8 +16,10 @@ export function abiToNodeRange (abi) {
export function toFancyPlatform (platform) {
if (platform === 'darwin') return 'macos';
if (platform === 'lin') return 'linux';
if (platform === 'osx') return 'macos';
if (platform === 'win32') return 'win';
if (platform === 'windows') return 'win';
return platform;
}