diff options
| author | Max Howell | 2009-06-20 15:46:31 +0100 |
|---|---|---|
| committer | Max Howell | 2009-06-20 15:46:31 +0100 |
| commit | a8aeba7c00a6503e526b8777878d6e592b258080 (patch) | |
| tree | c755827e6bc0aa88c4f6631315fc04b7c445a01e /bin | |
| parent | 271acec03636dc19aea4f4741df7a8fe6cc4aa86 (diff) | |
| download | homebrew-a8aeba7c00a6503e526b8777878d6e592b258080.tar.bz2 | |
Downcase name when creating new formulae with brew mk
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -263,7 +263,7 @@ begin /(.*?)[-_.]?#{version}/.match File.basename(url) raise "Couldn't parse name from #{url}" if $1.nil? - path=$formula+($1+'.rb') + path=$formula+($1.downcase+'.rb') raise "#{path} already exists!" if File.exist? path f=File.new path, 'w' |
