From 6586505bfe5d59143b4bb02dff5980ab6239189a Mon Sep 17 00:00:00 2001 From: Piotr Gorski Date: Fri, 16 Sep 2022 12:17:12 +0200 Subject: [PATCH] Fix cachyos config flag Signed-off-by: Piotr Gorski --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index d83756f..c2a15fe 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -288,10 +288,10 @@ prepare() { ### Selecting CachyOS config if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." - scripts/config --enable CACHY_CONFIG + scripts/config --enable CACHY elif [ "$_cachy_config" = "no" ]; then echo "Disabling CachyOS config..." - scripts/config --disable CACHY_CONFIG + scripts/config --disable CACHY else if [ -n "$_cachy_config" ]; then error "The value $_cachy_config is invalid. Choose the correct one again."