From 0312215540527cba5f1c3ed4853af6e0f75041d6 Mon Sep 17 00:00:00 2001 From: blackpill0w <103550574+blackpill0w@users.noreply.github.com> Date: Thu, 19 Oct 2023 14:23:31 +0000 Subject: [PATCH] Change check for existence of `sassc` --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 774ff4dd..6a7f99cd 100755 --- a/install.sh +++ b/install.sh @@ -413,7 +413,7 @@ function has_command() { # Install needed packages install_package() { - if [ ! "$(which sassc 2> /dev/null)" ]; then + if ! has_command sassc; then echo sassc needs to be installed to generate the css. if has_command zypper; then sudo zypper in sassc