vinceliuice / Colloid-gtk-theme

Colloid gtk theme for linux
GNU General Public License v3.0
908 stars 70 forks source link

Change check for existence of `sassc` as it fails when `which` isn't installed even if `sassc` exists. #130

Closed blackpill0w closed 8 months ago

blackpill0w commented 8 months ago

Running if [ ! "$(which sassc 2> /dev/null)" ]; fails if which (on Arch Linux it's not installed by default) is not installed even if sassc exists. It is also weird that this is the only check that uses which while others use command -v.