Skip to content

Commit

Permalink
Use alternate approach for detecting libwebkit2gtk version
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectricalBoy committed Jun 29, 2024
1 parent 7e69a1f commit 306aa6b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions linux.d/debian
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ then
fi

# check which version of libwebkit2gtk is available
apt show --quiet libwebkit2gtk-4.0-dev >/dev/null 2>&1
if [ "$?" == "0" ]
if [ "$(apt show --quiet libwebkit2gtk-4.0-dev)" != "" ]
then
REQUIRED_DEV_PACKAGES+=(libwebkit2gtk-4.0-dev)
else
Expand Down

0 comments on commit 306aa6b

Please sign in to comment.