diff --git a/Library/Homebrew/standalone.rb b/Library/Homebrew/standalone.rb index 865191d96b..0212c00d8c 100644 --- a/Library/Homebrew/standalone.rb +++ b/Library/Homebrew/standalone.rb @@ -3,5 +3,5 @@ # This file should be the first `require` in all entrypoints outside the `brew` environment. -require_relative "standalone/load_path" +require_relative "standalone/init" require_relative "standalone/sorbet" diff --git a/Library/Homebrew/standalone/load_path.rb b/Library/Homebrew/standalone/init.rb similarity index 100% rename from Library/Homebrew/standalone/load_path.rb rename to Library/Homebrew/standalone/init.rb diff --git a/Library/Homebrew/startup.rb b/Library/Homebrew/startup.rb index c47ca3749b..1eff1ae226 100644 --- a/Library/Homebrew/startup.rb +++ b/Library/Homebrew/startup.rb @@ -3,7 +3,7 @@ # This file should be the first `require` in all entrypoints of `brew`. -require_relative "standalone/load_path" +require_relative "standalone/init" require_relative "startup/ruby_path" require "startup/config" require_relative "startup/bootsnap"