Skip to content

Commit 4e5d0d7

Browse files
committed
Fix ArchLinux webkitgtk package name
1 parent 8f52538 commit 4e5d0d7

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

setup.ps1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,14 @@ else {
403403
'libglvnd'
404404
)
405405
406-
if ($(pacman -Si webkit2gtk -q 2>$null)) {
406+
if ($(pacman -Si webkit2gtk -q 2>$null))
407+
{
407408
$DEPENDS += 'webkit2gtk'
408409
}
410+
else
411+
{
412+
$DEPENDS += 'webkit2gtk-4.1'
413+
}
409414
410415
sudo pacman -S --needed --noconfirm @DEPENDS
411416
}

0 commit comments

Comments
 (0)