Change counter variable

i gets used by some of the functions being called
This commit is contained in:
the-sane 2022-10-21 23:51:13 -04:00
parent 3a7e0996b5
commit eedb5de460

View File

@ -1983,8 +1983,8 @@ Usage: lug-helper <options>
# 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