From b9ee9b868d8b182e7df689c6a231eb2f66237162 Mon Sep 17 00:00:00 2001 From: Daniel Bayley Date: Fri, 11 Nov 2022 17:33:11 +0000 Subject: [PATCH] Fix `install` `--dry-run` --- Library/Homebrew/cask/cmd/install.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/cask/cmd/install.rb b/Library/Homebrew/cask/cmd/install.rb index e19e64eb01..c4a550b5ba 100644 --- a/Library/Homebrew/cask/cmd/install.rb +++ b/Library/Homebrew/cask/cmd/install.rb @@ -1,6 +1,8 @@ # typed: false # frozen_string_literal: true +require "cask_dependent" + module Cask class Cmd # Cask implementation of the `brew install` command.