mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
chore: support Pop!_OS 22.04 versioning (#14859)
Co-authored-by: Elias Sorensen <elias.soerensen@usercentrics.com>
This commit is contained in:
parent
0f8114f6a8
commit
6ca18b3bb8
@ -81,6 +81,10 @@ function parseUbuntuVersion(osReleaseText: string): string {
|
|||||||
if (fields.get('distrib_id') && fields.get('distrib_id')?.toLowerCase() === 'ubuntu')
|
if (fields.get('distrib_id') && fields.get('distrib_id')?.toLowerCase() === 'ubuntu')
|
||||||
return fields.get('distrib_release') || '';
|
return fields.get('distrib_release') || '';
|
||||||
|
|
||||||
|
// For Pop!_OS
|
||||||
|
if (fields.get('id') && fields.get('id')?.toLowerCase() === 'pop')
|
||||||
|
return fields.get('version_id') || '';
|
||||||
|
|
||||||
if (!fields.get('name') || fields.get('name')?.toLowerCase() !== 'ubuntu')
|
if (!fields.get('name') || fields.get('name')?.toLowerCase() !== 'ubuntu')
|
||||||
return '';
|
return '';
|
||||||
return fields.get('version_id') || '';
|
return fields.get('version_id') || '';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user