From cd3136280e71a881b44bd5eea0b3b5bdbaaf0fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 7 Sep 2021 16:02:55 -0500 Subject: fix SC2086 https://github.com/koalaman/shellcheck/wiki/SC2086 --- scripts/i3blocks/memory | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/i3blocks/memory b/scripts/i3blocks/memory index e28af4e..6b36de8 100755 --- a/scripts/i3blocks/memory +++ b/scripts/i3blocks/memory @@ -16,7 +16,7 @@ TYPE="${BLOCK_INSTANCE:-mem}" -awk -v type=$TYPE ' +awk -v type="$TYPE" ' /^MemTotal:/ { mem_total=$2 } -- cgit v1.2.3