From 36091017282509612f787e0d4e74beb7b8c3b79b Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 1 Nov 2019 17:04:27 +0000 Subject: [PATCH] utils/gems: fix finding bundler. Need to specify the executable name not variable here. --- Library/Homebrew/utils/gems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/gems.rb b/Library/Homebrew/utils/gems.rb index 01baed7023..ea73021885 100644 --- a/Library/Homebrew/utils/gems.rb +++ b/Library/Homebrew/utils/gems.rb @@ -94,7 +94,7 @@ module Homebrew ENV["BUNDLE_GEMFILE"] = "#{ENV["HOMEBREW_LIBRARY"]}/Homebrew/Gemfile" @bundle_installed ||= begin - bundle = "#{find_in_path(bundle)}/bundle" + bundle = "#{find_in_path(:bundle)}/bundle" bundle_check_output = `#{bundle} check 2>&1` bundle_check_failed = !$CHILD_STATUS.success?