Skip to content
Snippets Groups Projects
Commit 2be37a81 authored by Carl Philipp Klemm's avatar Carl Philipp Klemm
Browse files

limit restarts to 100 as a failsafe

parent 119494ae
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ STOP=0
STEPFILE=/tmp/cchstep
RESTART=0
while [ $STOP == 0 ]; do
while [[ $STOP == 0 && RESTART < 100 ]]; do
echo "Starting expirament at step $STEP substep $SUBSTEP"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment