Skip to content

Commit

Permalink
Checking if CI will work with this
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi committed Apr 28, 2021
1 parent d8d21be commit 2b625af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rosdep2/sources_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,10 +550,10 @@ def get_additional_sources(dist_name):
print('Skip distro "%s" different from requested "%s"' % (dist_name, ros_distro))
return
distribution = get_index().distributions[dist_name]
if skip_eol_distros:
if distribution.get('distribution_status') == 'end-of-life':
print('Skip end-of-life distro "%s"' % dist_name)
return
if skip_eol_distros:
if distribution.get('distribution_status') == 'end-of-life':
print('Skip end-of-life distro "%s"' % dist_name)
return
print('Add distro "%s"' % dist_name)
rds = RosDistroSource(dist_name)
rosdep_data = get_gbprepo_as_rosdep_data(dist_name)
Expand Down

0 comments on commit 2b625af

Please sign in to comment.