Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
a731f4e1
Commit
a731f4e1
authored
8 years ago
by
David Broder-Rodgers
Browse files
Options
Downloads
Patches
Plain Diff
Updated HTTP mirror check to use new url_status_code method
parent
d3ac3331
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/dev-cmd/audit.rb
+5
-6
5 additions, 6 deletions
Library/Homebrew/dev-cmd/audit.rb
with
5 additions
and
6 deletions
Library/Homebrew/dev-cmd/audit.rb
+
5
−
6
View file @
a731f4e1
...
@@ -174,7 +174,7 @@ class FormulaAuditor
...
@@ -174,7 +174,7 @@ class FormulaAuditor
@specs
=
%w[stable devel head]
.
map
{
|
s
|
formula
.
send
(
s
)
}.
compact
@specs
=
%w[stable devel head]
.
map
{
|
s
|
formula
.
send
(
s
)
}.
compact
end
end
def
url_status_code
(
url
,
range:
false
)
def
self
.
url_status_code
(
url
,
range:
false
)
# The system Curl is too old and unreliable with HTTPS homepages on
# The system Curl is too old and unreliable with HTTPS homepages on
# Yosemite and below.
# Yosemite and below.
return
"200"
unless
DevelopmentTools
.
curl_handles_most_https_homepages?
return
"200"
unless
DevelopmentTools
.
curl_handles_most_https_homepages?
...
@@ -195,7 +195,7 @@ class FormulaAuditor
...
@@ -195,7 +195,7 @@ class FormulaAuditor
user_agent:
user_agent
,
user_agent:
user_agent
,
)
)
status_code
=
Open3
.
popen3
(
*
args
)
{
|
_
,
stdout
,
_
,
_
|
stdout
.
read
}
status_code
=
Open3
.
popen3
(
*
args
)
{
|
_
,
stdout
,
_
,
_
|
stdout
.
read
}
break
if
status_code
.
start_with?
"2
0
"
break
if
status_code
.
start_with?
"2"
end
end
status_code
status_code
end
end
...
@@ -619,7 +619,7 @@ class FormulaAuditor
...
@@ -619,7 +619,7 @@ class FormulaAuditor
return
unless
@online
return
unless
@online
status_code
=
url_status_code
(
homepage
)
status_code
=
FormulaAuditor
.
url_status_code
(
homepage
,
user_agent: :browser
)
return
if
status_code
.
start_with?
"20"
return
if
status_code
.
start_with?
"20"
problem
"The homepage
#{
homepage
}
is not reachable (HTTP status code
#{
status_code
}
)"
problem
"The homepage
#{
homepage
}
is not reachable (HTTP status code
#{
status_code
}
)"
end
end
...
@@ -1491,9 +1491,8 @@ class ResourceAuditor
...
@@ -1491,9 +1491,8 @@ class ResourceAuditor
return
unless
@online
return
unless
@online
urls
.
each
do
|
url
|
urls
.
each
do
|
url
|
if
url
.
start_with?
"http"
,
"ftp"
if
url
.
start_with?
"http"
,
"ftp"
status_code
,
=
curl_output
"--connect-timeout"
,
"15"
,
"--output"
,
"/dev/null"
,
"--range"
,
"0-0"
,
\
status_code
=
FormulaAuditor
.
url_status_code
url
"--write-out"
,
"%{http_code}"
,
url
unless
status_code
.
start_with?
"2"
unless
status_code
.
start_with?
"20"
problem
"The URL
#{
url
}
is not reachable (HTTP status code
#{
status_code
}
)"
problem
"The URL
#{
url
}
is not reachable (HTTP status code
#{
status_code
}
)"
end
end
elsif
url
.
start_with?
"git"
elsif
url
.
start_with?
"git"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment