summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rw-r--r--tool/downloader.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/tool/downloader.rb b/tool/downloader.rb
index 40a207f14e..e1d648e29a 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -186,6 +186,11 @@ if $0 == __FILE__
when '-d'
destdir = ARGV[1]
ARGV.shift
+ when '-p'
+ # strip directory names from the name to download, and add the
+ # prefix instead.
+ prefix = ARGV[1]
+ ARGV.shift
when '-e'
ims = nil
when '-a'
@@ -205,6 +210,7 @@ if $0 == __FILE__
dl = Downloader.const_get(dl)
ARGV.shift
ARGV.each do |name|
+ name = "#{prefix}/#{File.basename(name)}" if prefix
dl.download(name, destdir, ims)
end
else