From bfeb728f801b099b5915335643584c394615468f Mon Sep 17 00:00:00 2001 From: krolyxon Date: Wed, 21 Jan 2026 19:28:54 +0530 Subject: [PATCH] install.sh: fix AUTO_YES for UTILITY_PKGS --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 90e00e1..d04a6e6 100755 --- a/install.sh +++ b/install.sh @@ -129,7 +129,7 @@ Do you understand the risks and want to continue?" || exit 1 source "$currentDir/packages/pkg_utils.sh" prompt_style "Important utilities (Most likely go with defaults)" if ((AUTO_YES)); then - DEV_PKGS=("${pkg_utils[@]}") + UTILITY_PKGS=("${pkg_utils[@]}") else gum_to_array UTILITY_PKGS < <(choose_packages pkg_utils) fi