mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
16 lines
295 B
Ruby
16 lines
295 B
Ruby
![]() |
# typed: true # rubocop:todo Sorbet/StrictSigil
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
require "software_spec"
|
||
|
|
||
|
class HeadSoftwareSpec < SoftwareSpec
|
||
|
def initialize(flags: [])
|
||
|
super
|
||
|
@resource.version(Version.new("HEAD"))
|
||
|
end
|
||
|
|
||
|
def verify_download_integrity(_filename)
|
||
|
# no-op
|
||
|
end
|
||
|
end
|