mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-28 16:14:21 +00:00
Change counter variable
i gets used by some of the functions being called
This commit is contained in:
parent
3a7e0996b5
commit
eedb5de460
@ -1983,8 +1983,8 @@ Usage: lug-helper <options>
|
|||||||
|
|
||||||
# Call the requested functions and exit
|
# Call the requested functions and exit
|
||||||
if [ "${#cargs[@]}" -gt 0 ]; then
|
if [ "${#cargs[@]}" -gt 0 ]; then
|
||||||
for (( i=0; i<"${#cargs[@]}"; i++ )); do
|
for (( x=0; x<"${#cargs[@]}"; x++ )); do
|
||||||
${cargs[i]}
|
${cargs[x]}
|
||||||
done
|
done
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user