We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4815ac commit 524397bCopy full SHA for 524397b
src/utils.ts
@@ -60,6 +60,7 @@ export function getSupportedPlatform() {
60
case 'ubuntu':
61
const versionId = getValue("VERSION_ID");
62
if (versionId.startsWith("14")) {
63
+ // This also works for Linux Mint
64
return SupportedPlatform.Ubuntu14;
65
}
66
else if (versionId.startsWith("16")) {
@@ -75,7 +76,7 @@ export function getSupportedPlatform() {
75
76
return SupportedPlatform.RHEL;
77
case 'debian':
78
return SupportedPlatform.Debian;
- case 'oracle':
79
+ case 'ol':
80
// Oracle Linux is binary compatible with CentOS
81
return SupportedPlatform.CentOS;
82
0 commit comments