Skip to content
Snippets Groups Projects
Commit f584cad3 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

If we're looping more than once, print out the iteration

parent db8f0de8
No related branches found
No related tags found
No related merge requests found
......@@ -227,6 +227,9 @@ LDAPNOINIT=true; export LDAPNOINIT
echo "Running ${SCRIPT}..."
while [ $COUNTER -le $LOOP ]; do
if [ $LOOP -gt 1 ]; then
echo "Running $COUNTER of $LOOP iterations"
fi
$SCRIPT $*
RC=$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment