brew/Library/Homebrew/cask/dsl/postflight.rb
2024-05-01 11:35:20 +02:00

18 lines
350 B
Ruby

# typed: true
# frozen_string_literal: true
require "cask/staged"
module Cask
class DSL
# Class corresponding to the `postflight` stanza.
class Postflight < Base
include Staged
def suppress_move_to_applications(**_options)
odisabled "`Cask::DSL::Postflight#suppress_move_to_applications`"
end
end
end
end