From eedb5de460d233c5cf6a193152fdb50cc2de47a0 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Fri, 21 Oct 2022 23:51:13 -0400 Subject: [PATCH] Change counter variable i gets used by some of the functions being called --- lug-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index ed78243..3c35c3c 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -1983,8 +1983,8 @@ Usage: lug-helper # Call the requested functions and exit if [ "${#cargs[@]}" -gt 0 ]; then - for (( i=0; i<"${#cargs[@]}"; i++ )); do - ${cargs[i]} + for (( x=0; x<"${#cargs[@]}"; x++ )); do + ${cargs[x]} done exit 0 fi