aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/container/otf.rb
blob: f9a25e1ed0b75a5adbb712432d10de1ab85a2ce3 (plain)
1
2
3
4
5
6
7
require "hbc/container/naked"

class Hbc::Container::Otf < Hbc::Container::Naked
  def self.me?(criteria)
    criteria.magic_number(%r{^OTTO}n)
  end
end