AptDownloader 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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