Skip to content

Commit

Permalink
Merge pull request #349 from lnussel/master
Browse files Browse the repository at this point in the history
Filter ports repo (#321)
  • Loading branch information
dmacvicar committed Jun 22, 2018
2 parents 36faa02 + 3db02f7 commit 98aae4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/obs_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def filter_packages
@packages.filter! { |p| p.project.include?("PowerPC") || p.repository.include?("PowerPC") }
else # x86
@packages.reject! do |p|
p.repository.end_with?("_ARM", "_PowerPC", "_zSystems") ||
p.repository.end_with?("_ARM", "_PowerPC", "_zSystems") || p.repository == 'ports' ||
p.project.include?("ARM") || p.project.include?("PowerPC") || p.project.include?("zSystems")
end
end
Expand Down

0 comments on commit 98aae4d

Please sign in to comment.