Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix -release repository check in release.py #1019

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,8 @@ def parse_args(argv):
return args

def get_release_repository_info(package):
# Do not use git@github method since it fails in non existant repositories
# asking for stdin user/pass. Same happen if no user/pass is provided
# using the fake foo:foo here seems to work
github_test_url = "https://foo:[email protected]/gazebo-release/" + package + "-release"
if (github_repo_exists(github_test_url)):
github_url = "https://github.com/gazebo-release/" + package + "-release"
github_url = "https://github.com/gazebo-release/" + package + "-release"
if (github_repo_exists(github_url)):
return 'git', github_url

error("release repository not found in github.com/gazebo-release")
Expand Down