Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Merge pull request #77 from jmtd/deterministic-repo-ordering
Browse files Browse the repository at this point in the history
sort repo_files when generating additional_repos
  • Loading branch information
rwngwn authored Feb 16, 2017
2 parents d26b671 + f154041 commit de235e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dogen/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def _handle_custom_repo_files(self):

self.log.debug("Found following additional repo files: %s" % ", ".join(repo_files))

for f in repo_files:
for f in sorted(repo_files):
self.cfg['additional_repos'].append(os.path.splitext(os.path.basename(f))[0])

def _validate_cfg(self):
Expand Down

0 comments on commit de235e0

Please sign in to comment.