Skip to content

Commit

Permalink
Update validate-recipes.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bberkeyU authored Nov 22, 2024
1 parent ca5cef3 commit b96a9a2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/validate-recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ jobs:
for repeats in range(forCount):
for nextLine in range(len(results)-i):
if len(results[startLine+nextLine])> 0 and "endfor" == (results[startLine+nextLine]).lower().split()[0]:
endline = startLine+nextLine+1
break
else:
results2.append(results[startLine+nextLine])
if len(results[startLine+nextLine])> 0:
if "endfor" == (results[startLine+nextLine]).lower().split()[0]:
endline = startLine+nextLine+1
break
else:
results2.append(results[startLine+nextLine])
else:
if i < endline:
pass
Expand Down

0 comments on commit b96a9a2

Please sign in to comment.