summaryrefslogtreecommitdiff
path: root/tool/downloader.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/downloader.rb')
-rw-r--r--tool/downloader.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/downloader.rb b/tool/downloader.rb
index 27c706d9ae..3b39f45ed0 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -17,7 +17,7 @@ class Downloader
class Unicode < self
def self.download(name, *rest)
- super("http://www.unicode.org/Public/7.0.0/ucd/#{name}", name, *rest)
+ super("http://www.unicode.org/Public/#{name}", name, *rest)
end
end
@@ -53,7 +53,7 @@ class Downloader
# download 'http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt',
# 'UnicodeData.txt', 'enc/unicode/data'
def self.download(url, name, dir = nil, ims = true)
- file = dir ? File.join(dir, name) : name
+ file = dir ? File.join(dir, File.basename(name)) : name
return true if ims.nil? and File.exist?(file)
url = URI(url)
if $VERBOSE
@@ -124,7 +124,7 @@ if $0 == __FILE__
end
dl = Downloader.constants.find do |name|
ARGV[0].casecmp(name.to_s) == 0
- end
+ end unless ARGV.empty?
$VERBOSE = true
if dl
dl = Downloader.const_get(dl)