Skip to content

Commit

Permalink
consider multiple distribution files with rep 143
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Dec 2, 2014
1 parent 8a40c3e commit 32e5eac
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion bloom/commands/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,15 @@ def get_index():
def get_distribution_file(distro):
global _rosdistro_distribution_files
if distro not in _rosdistro_distribution_files:
_rosdistro_distribution_files[distro] = rosdistro.get_distribution_file(get_index(), distro)
try:
# REP 143, get list of distribution files and take the last once
files = rosdistro.get_distribution_files(get_index(), distro)
if not files:
error("No distribution files listed for distribution '{0}'."
.format(distro), exit=True)
_rosdistro_distribution_files[distro] = files[-1]
except AttributeError:
_rosdistro_distribution_files[distro] = rosdistro.get_distribution_file(get_index(), distro)
return _rosdistro_distribution_files[distro]

_rosdistro_distribution_file_urls = {}
Expand Down

0 comments on commit 32e5eac

Please sign in to comment.