aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2015-03-15 23:22:43 -0400
committerJack Nagel2015-03-15 23:23:14 -0400
commit0a41cbcd9c83facee4fce5d0bf5f14ccceba4337 (patch)
tree08b31fe88ebecbcebf397a13f7cd271819458ef0
parent6b58107693b01473c42f9901eb25f52b20b9bd56 (diff)
downloadbrew-0a41cbcd9c83facee4fce5d0bf5f14ccceba4337.tar.bz2
Always create real directories under lib/ruby
Fixes Homebrew/homebrew#37685. Closes Homebrew/homebrew#37704.
-rw-r--r--Library/Homebrew/keg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb
index 25656f25a..a4d43bc83 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