shellcheck.sh: Unify variable style

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
Fini Jastrow 2024-08-28 09:31:31 +02:00
parent d294607b12
commit 66ae03de2e

View file

@ -13,7 +13,7 @@ source "${sd}/lib/i_all.sh"
# Search the key on the declared variables
for glyph in ${!i_*}; do
if [[ "$glyph" == *"$1"* ]]; then
printf "%s\t%x\t%s\n" "${!glyph}" "'${!glyph}'" "$glyph"
if [[ "${glyph}" == *"${1}"* ]]; then
printf "%s\t%x\t%s\n" "${!glyph}" "'${!glyph}'" "${glyph}"
fi
done