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
1064678d
Commit
1064678d
authored
4 years ago
by
Markus Reiter
Browse files
Options
Downloads
Patches
Plain Diff
Add audit for unversioned URLs with checksum.
parent
6b3555eb
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/cask/audit.rb
+7
-0
7 additions, 0 deletions
Library/Homebrew/cask/audit.rb
with
7 additions
and
0 deletions
Library/Homebrew/cask/audit.rb
+
7
−
0
View file @
1064678d
...
...
@@ -248,6 +248,7 @@ module Cask
return
unless
cask
.
sha256
check_sha256_no_check_if_latest
check_sha256_no_check_if_unversioned
check_sha256_actually_256
check_sha256_invalid
end
...
...
@@ -260,6 +261,12 @@ module Cask
add_error
"you should use sha256 :no_check when version is :latest"
end
def
check_sha256_no_check_if_unversioned
return
if
cask
.
sha256
==
:no_check
add_error
"Use `sha256 :no_check` when URL is unversioned."
if
cask
.
url
.
unversioned?
end
def
check_sha256_actually_256
odebug
"Verifying sha256 string is a legal SHA-256 digest"
return
unless
cask
.
sha256
.
is_a?
(
Checksum
)
...
...
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