From 3dd87e6d17a6c79228dd77bc774bf8b92ea323da Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Tue, 6 May 2025 16:44:24 -0700 Subject: [PATCH] dev-cmd/prof: require fileutils Fixes error when running `brew prof`: uninitialized constant Homebrew::DevCmd::Prof::FileUtils --- Library/Homebrew/dev-cmd/prof.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/dev-cmd/prof.rb b/Library/Homebrew/dev-cmd/prof.rb index ac16a53b14..b8f485568f 100644 --- a/Library/Homebrew/dev-cmd/prof.rb +++ b/Library/Homebrew/dev-cmd/prof.rb @@ -2,6 +2,7 @@ # frozen_string_literal: true require "abstract_command" +require "fileutils" module Homebrew module DevCmd