Skip to content

Commit 9f38c30

Browse files
Beryesabbhtt
authored andcommitted
node: Fix newer revision webkit filenames
1 parent 46b3749 commit 9f38c30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

node/flatpak_node_generator/providers/special.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,10 @@ async def _handle_playwright(self, package: Package) -> None:
362362
url_tp = 'https://playwright.azureedge.net/builds/webkit/%d/%s'
363363
if revision < 1317:
364364
dl_file = 'minibrowser-gtk-wpe.zip'
365-
else:
365+
elif revision <= 2092:
366366
dl_file = 'webkit-ubuntu-20.04.zip'
367+
else:
368+
dl_file = 'webkit-ubuntu-24.04.zip'
367369
elif name == 'ffmpeg':
368370
url_tp = 'https://playwright.azureedge.net/builds/ffmpeg/%d/%s'
369371
dl_file = 'ffmpeg-linux.zip'

0 commit comments

Comments
 (0)