summaryrefslogtreecommitdiff
path: root/tool/get-config_files
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-28 11:27:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-28 11:27:22 +0000
commit1c01280d17f700de26440fa9431a9ce58d6353e5 (patch)
tree129d01a67180df3f3c150cad3570538791c21f34 /tool/get-config_files
parent3bbea8ed37278c9cc584bb25624eee05efebb117 (diff)
downloader.rb
* configure.in: use tool/downloader.rb directly. * tool/get-config_files: no longer used. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/get-config_files')
-rwxr-xr-xtool/get-config_files12
1 files changed, 0 insertions, 12 deletions
diff --git a/tool/get-config_files b/tool/get-config_files
deleted file mode 100755
index 113fee0966..0000000000
--- a/tool/get-config_files
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/ruby
-require File.expand_path('../downloader', __FILE__)
-ARGV.each {|n|
- STDOUT.print "Downloading #{n}..."; STDOUT.flush
- begin
- Downloader.download(:gnu, n)
- STDOUT.puts
- rescue => e
- STDOUT.puts
- abort("#{$0}: #{e.message}")
- end
-}