Merge pull request #210 from amogusussy/main

Add commands for void linux
This commit is contained in:
Vince
2025-01-10 15:54:06 +08:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ if [ ! "$(which sassc 2> /dev/null)" ]; then
sudo yum install sassc sudo yum install sassc
elif has_command pacman; then elif has_command pacman; then
sudo pacman -S --noconfirm sassc sudo pacman -S --noconfirm sassc
elif has_command xbps-install; then
sudo xbps-install -y sassc
fi fi
fi fi

View File

@@ -449,6 +449,8 @@ install_package() {
sudo yum install sassc sudo yum install sassc
elif has_command pacman; then elif has_command pacman; then
sudo pacman -S --noconfirm sassc sudo pacman -S --noconfirm sassc
elif has_command xbps-install; then
sudo xbps-install -y sassc
fi fi
fi fi
} }