Skip to content

Commit

Permalink
release.py: skip ROS for non-stable releases
Browse files Browse the repository at this point in the history
Skip trying to update ROS vendor packages for prerelease
or nightly releases.

Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters committed Feb 13, 2025
1 parent 914f8e1 commit 52744c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,9 @@ def go(argv):
args.auth_input_arg)
display_help_job_chain_for_source_calls(args)
# Process the possible update of an associated ROS vendor package
process_ros_vendor_package(args)
# for stable releases only
if not (PRERELEASE or NIGHTLY):
process_ros_vendor_package(args)


if __name__ == '__main__':
Expand Down

0 comments on commit 52744c5

Please sign in to comment.