AptDownloader 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/apt_downloader +1 -2
- data/lib/apt_downloader.rb +1 -1
- metadata +1 -1
data/bin/apt_downloader
CHANGED
@@ -14,12 +14,11 @@ class ThisApplication
|
|
14
14
|
opts.on("-a", "--architecture ARCH", "Debian architecure to download " +
|
15
15
|
"packages for. Options are:" +
|
16
16
|
"#{AptDownloader::VALID_DEBIAN_ARCHITECTURES.map{|x| "\n" +"\t"*5+"#{x}"} }") do |a|
|
17
|
-
|
17
|
+
@architecture = a
|
18
18
|
end
|
19
19
|
|
20
20
|
opts.on("-o", "--output-dir DIR", "Copy all deb files to directory " +
|
21
21
|
"(directory created if needed)") do |dir|
|
22
|
-
puts dir
|
23
22
|
@output_dir = dir
|
24
23
|
end
|
25
24
|
|
data/lib/apt_downloader.rb
CHANGED