From 98a475feb958e2a3949cea2b0b4102029126977f Mon Sep 17 00:00:00 2001 From: Philip Mueller Date: Thu, 22 Jun 2023 09:38:37 +0200 Subject: [PATCH] [src] fix BASE_PACKAGES --- src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.rs b/src/constants.rs index f7d4c55..b652191 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -7,6 +7,6 @@ Storage=volatile SystemMaxUse=16M "; -pub const BASE_PACKAGES: [&str; 9] = ["base"]; +pub const BASE_PACKAGES: [&str; 1] = ["base"]; pub const AUR_DEPENDENCIES: [&str; 3] = ["base-devel", "git", "sudo"];