diff options
| author | Mike McQuaid | 2013-01-27 18:41:06 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2013-01-29 17:14:09 -0800 |
| commit | b58077b3e8c182271ae109cffd125d32c7dd99b6 (patch) | |
| tree | 3eb5de5ef2ac797c8c47b0679ff7a3aaf46611ee /Library/Homebrew/extend | |
| parent | 1107171f83ba4e6d32385613ca71f7614fc3a234 (diff) | |
| download | brew-b58077b3e8c182271ae109cffd125d32c7dd99b6.tar.bz2 | |
Don't use underscores in (new) bottle filenames.
Closes Homebrew/homebrew#14270
Diffstat (limited to 'Library/Homebrew/extend')
| -rw-r--r-- | Library/Homebrew/extend/pathname.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index 49aa52c04..77719c984 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -5,7 +5,7 @@ require 'mach' class Pathname include MachO - BOTTLE_EXTNAME_RX = /(\.[a-z]+\.bottle\.(\d+\.)?tar\.gz)$/ + BOTTLE_EXTNAME_RX = /(\.[a-z_]+\.bottle\.(\d+\.)?tar\.gz)$/ def install *sources results = [] |
