From 83783ae056f006eef48514f3604889e4e121236b Mon Sep 17 00:00:00 2001 From: climberomes Date: Sun, 21 Dec 2025 00:15:09 -0800 Subject: [PATCH] nit typo code comment --- installers/common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installers/common.sh b/installers/common.sh index 5c2fbea9..fef66013 100644 --- a/installers/common.sh +++ b/installers/common.sh @@ -427,11 +427,11 @@ function _prompt_install_feature() { elif [ "$opt" == "pv_option" ]; then # pv_option has multiple options and is not a normal binary flag [enabled(1)/disabled(0)]. # We must evaluate the input flag and its value in this block - local opt_value=${!opt:-0} # Default to zero if somehow pv_option is still assigned as to null. + local opt_value=${!opt:-0} # Default to zero if somehow pv_option is still unassigned. if [ "$opt_value" == 0 ]; then - echo "(Skipped)" # Skip if VPN Provider not selected / assigned + echo "(Skipped)" # Skip if VPN Provider not selected / unassigned else - # Iterate over the defined VPN providers by pulling the valid providers from the config file + # Iterate over the defined VPN Providers by pulling the valid providers from the config file local valid_ids=($(jq -r '.providers[].id' "$webroot_dir/config/vpn-providers.json")) local found=0 for id in "${valid_ids[@]}"; do