aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/dsl/postflight.rb
blob: 1026f6de60fa718a4c65a11bff775e84dd121fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "hbc/staged"

module Hbc
  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