From 0a41cbcd9c83facee4fce5d0bf5f14ccceba4337 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 15 Mar 2015 23:22:43 -0400 Subject: [PATCH] Always create real directories under lib/ruby Fixes Homebrew/homebrew#37685. Closes Homebrew/homebrew#37704. --- Library/Homebrew/keg.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb index 25656f25a4..a4d43bc835 100644 --- a/Library/Homebrew/keg.rb +++ b/Library/Homebrew/keg.rb @@ -288,7 +288,7 @@ class Keg when /^perl5/ then :mkpath when 'php' then :mkpath when /^python[23]\.\d/ then :mkpath - when 'ruby' then :mkpath + when /^ruby/ then :mkpath # Everything else is symlinked to the cellar else :link end