Skip to content

Commit

Permalink
v1.5 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberomanov authored Jan 23, 2023
1 parent d6f0407 commit 9914f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function TryUntilSuccessLocalFunc() {
FUNC_RESULT="fail"
FUNC_TRY=0

while [[ ${FUNC_RESULT} == "fail" ]] && [[ ${FUNC_TRY} != 10 ]]; do
while [[ ${FUNC_RESULT} == "fail" ]] && [[ ${FUNC_TRY} != 100 ]]; do
FUNC_TRY=$((FUNC_TRY + 1))
${FUNCTION}
sleep 5
Expand Down

0 comments on commit 9914f9a

Please sign in to comment.