install.sh: fix AUTO_YES for UTILITY_PKGS

This commit is contained in:
krolyxon 2026-01-21 19:28:54 +05:30
parent 20678601db
commit bfeb728f80
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ Do you understand the risks and want to continue?" || exit 1
source "$currentDir/packages/pkg_utils.sh" source "$currentDir/packages/pkg_utils.sh"
prompt_style "Important utilities (Most likely go with defaults)" prompt_style "Important utilities (Most likely go with defaults)"
if ((AUTO_YES)); then if ((AUTO_YES)); then
DEV_PKGS=("${pkg_utils[@]}") UTILITY_PKGS=("${pkg_utils[@]}")
else else
gum_to_array UTILITY_PKGS < <(choose_packages pkg_utils) gum_to_array UTILITY_PKGS < <(choose_packages pkg_utils)
fi fi