mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-28 16:24: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
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user