You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Warn against distros that have a ID_LIKE set to "ubuntu", but no other upstream information and are not specially mapped (see above)
385
+
if(!/^ubuntu(?:|linux)\s*$/i.test(os.dist)){
386
+
console.warn(
387
+
`Unmapped distro "${os.dist}" with ID_LIKE "ubuntu", defaulting to highest ubuntu version!\n`+
388
+
'This means that your distro does not have a internal mapping in MMS or does not have a upstream release file (like "/etc/upstream-release/lsb-release"), but has set a ID_LIKE'
389
+
);
390
+
391
+
ubuntuOS={
392
+
os: 'linux',
393
+
dist: 'ubuntu',
394
+
release: '20.04',// TODO: try to keep this up-to-date to the latest LTS
0 commit comments