Skip to content
Snippets Groups Projects
Commit c854cba5 authored by Hendrike Heydenreich's avatar Hendrike Heydenreich
Browse files

NOISSUE - dummy commit to force a pipeline run

parent 64b75541
No related branches found
No related tags found
No related merge requests found
......@@ -26,9 +26,9 @@ for i in {1..2500}; do
# shellcheck disable=SC2181
if [ $retval == 0 ]; then
number_of_consecutive_successful_tries_achieved=$((number_of_consecutive_successful_tries_achieved + 1))
echo "success (${number_of_consecutive_successful_tries_achieved})"
echo "Success (${number_of_consecutive_successful_tries_achieved})"
if [ "$number_of_consecutive_successful_tries_achieved" -eq "$number_of_consecutive_successful_tries_needed" ]; then
echo "test successful after $i total tries"
echo "Test successful after $i total tries"
exit 0
fi
else
......@@ -38,5 +38,5 @@ for i in {1..2500}; do
fi
done
echo -e "no success after $i tries. Last output was:\n$out"
echo -e "No success after $i tries. Last output was:\n$out"
exit 1
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