1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Downloader: Define long option aliases

This commit is contained in:
Nobuyoshi Nakada 2022-09-17 22:51:30 +09:00
parent a0b0991eed
commit cc533cb607
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -395,18 +395,20 @@ if $0 == __FILE__
end
case ARGV[0]
when '-d'
when '-d', '--destdir'
destdir = ARGV[1]
ARGV.shift
when '-p'
when '-p', '--prefix'
# strip directory names from the name to download, and add the
# prefix instead.
prefix = ARGV[1]
ARGV.shift
when '-e'
when '-e', '--exist', '--non-existent-only'
since = nil
when '-a'
when '-a', '--always'
since = false
when '-u', '--update', '--if-modified'
since = true
when '-n', '--dryrun'
options[:dryrun] = true
when '--cache-dir'