repomate 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/repomate/metafile.rb +3 -3
- metadata +1 -1
data/lib/repomate/metafile.rb
CHANGED
@@ -60,10 +60,10 @@ module RepoMate
|
|
60
60
|
# Create Packages* files
|
61
61
|
def create_packages
|
62
62
|
source_category = "dists"
|
63
|
-
|
64
|
-
packages_template = ERB.new File.new(File.join(File.dirname(__FILE__), "templates/packages.erb")).read, nil, "%"
|
65
|
-
|
63
|
+
|
66
64
|
Architecture.dataset(source_category).each do |entry|
|
65
|
+
packages_template = ERB.new File.new(File.join(File.dirname(__FILE__), "templates/packages.erb")).read, nil, "%"
|
66
|
+
|
67
67
|
source = Architecture.new(entry[:architecture], entry[:component], entry[:suitename], source_category)
|
68
68
|
source.files.each do |fullname|
|
69
69
|
package = Package.new(fullname, entry[:suitename], entry[:component])
|