Skip to content

Commit

Permalink
fix: continue on no update for repository (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrt47 authored Nov 22, 2024
1 parent 3faa7a2 commit c66dac6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions evergreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,10 @@ def main(): # pragma: no cover

if dependabot_file is None:
print("\tNo (new) compatible package manager found")
else:
dependabot_file = yaml.dump(dependabot_file, stream)
dependabot_file = stream.getvalue()
continue

yaml.dump(dependabot_file, stream)
dependabot_file = stream.getvalue()

# If dry_run is set, just print the dependabot file
if dry_run:
Expand Down

0 comments on commit c66dac6

Please sign in to comment.