From fd1d68ca9c1d5b87f387d59640a991a7912f7385 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sun, 14 Dec 2025 15:51:56 -0700 Subject: [PATCH] common: camel_case for local vars --- usr/local/share/bastille/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/share/bastille/common.sh b/usr/local/share/bastille/common.sh index dac8c140..9ff19c5f 100644 --- a/usr/local/share/bastille/common.sh +++ b/usr/local/share/bastille/common.sh @@ -593,8 +593,8 @@ checkyesno() { ## now used for all bastille_zfs_enable=YES|NO tests ## example: if checkyesno bastille_zfs_enable; then ... ## returns 0 for enabled; returns 1 for disabled - eval _value=\$${1} - case $_value in + eval value=\$${1} + case $value in [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) return 0 ;;