Merge pull request #736 from kamszyc/patch-1

Add Linux Mint 18 case to switch statement
This commit is contained in:
Chuck Ries 2016-08-30 16:45:41 -07:00 коммит произвёл GitHub
Родитель bdd4dcac40 b7a41cc221
Коммит ea83d030b5
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -93,9 +93,17 @@ export function getCurrentPlatform() {
return Platform.Ubuntu16;
}
break;
case 'linuxmint':
const lmVersionId = getValue("VERSION_ID");
if (lmVersionId.startsWith("18")) {
// Linux Mint 18 is binary compatible with Ubuntu 16.04
return Platform.Ubuntu16;
}
break;
}
}
return Platform.Unknown;
}
}