aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/brew.h.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/brew.h.rb')
-rw-r--r--Library/Homebrew/brew.h.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/Library/Homebrew/brew.h.rb b/Library/Homebrew/brew.h.rb
index 60fce7eb8..a524c3298 100644
--- a/Library/Homebrew/brew.h.rb
+++ b/Library/Homebrew/brew.h.rb
@@ -144,31 +144,6 @@ def clean f
end
-def install f
- f.brew do
- if ARGV.flag? '--interactive'
- ohai "Entering interactive mode"
- puts "Type `exit' to return and finalize the installation"
- puts "Install to this prefix: #{f.prefix}"
- interactive_shell
- nil
- elsif ARGV.include? '--help'
- system './configure --help'
- exit $?
- else
- f.prefix.mkpath
- beginning=Time.now
- f.install
- %w[README ChangeLog COPYING LICENSE COPYRIGHT AUTHORS].each do |file|
- FileUtils.mv "#{file}.txt", file rescue nil
- f.prefix.install file rescue nil
- end
- return Time.now-beginning
- end
- end
-end
-
-
def prune
$n=0
$d=0