From: Fred T. Hamster Date: Tue, 6 Sep 2016 22:50:56 +0000 (-0400) Subject: made the loop variable local, since it was hosing external uses of i variable. X-Git-Tag: 2.140.90~472 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=609b705e54bef599d06151cbcb10da415918ff42 made the loop variable local, since it was hosing external uses of i variable. --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 0d1be4af..7edaa007 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -560,6 +560,7 @@ return 0 count=79 fi echo + local i for ((i=0; i < $count - 1; i++)); do echo -n "=" done