Skip to content
Snippets Groups Projects
Unverified Commit ba7a05a9 authored by Maxim Belkin's avatar Maxim Belkin
Browse files

bump-formula-pr.rb: Apply suggestions from code review

parent a031fe91
No related branches found
No related tags found
No related merge requests found
......@@ -388,10 +388,10 @@ module Homebrew
else
# GitHub API responds immediately but fork takes a few seconds to be ready.
sleep 1 until GitHub.check_fork_exists(tap_full_name)
if system("git", "config", "--local", "--get-regexp", "remote\..*\.url", "git@github.com:.*")
remote_url = response.fetch("ssh_url")
remote_url = if system("git", "config", "--local", "--get-regexp", "remote\..*\.url", "git@github.com:.*")
response.fetch("ssh_url")
else
remote_url = response.fetch("clone_url")
response.fetch("clone_url")
end
username = response.fetch("owner").fetch("login")
[remote_url, username]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment