brew/Library/Homebrew/cask/dsl/postflight.rb
2019-04-20 13:27:36 +09:00

16 lines
279 B
Ruby

# frozen_string_literal: true
require "cask/staged"
module Cask
class DSL
class Postflight < Base
include Staged
def suppress_move_to_applications(options = {})
# TODO: Remove from all casks because it is no longer needed
end
end
end
end