Skip to content

Commit

Permalink
[#1618] Added apk to the PKG_TYPE checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszmrugalski committed Dec 17, 2024
1 parent 26e943a commit f63c0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rakelib/40_dist.rake
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_package_manager_type()
# Read environment variable.
if !ENV["PKG_TYPE"].nil?
pkg_type = ENV["PKG_TYPE"].downcase
allowed_types = ["deb", "rpm"]
allowed_types = ["deb", "rpm", "apk"]
if !allowed_types.include?(pkg_type)
fail "Invalid PKG_TYPE value: #{ENV["PKG_TYPE"]}. Must be one of: #{allowed_types.join(", ")}"
end
Expand Down

0 comments on commit f63c0c4

Please sign in to comment.