From 50eae46d37434bee29a7d6f70c53ba39748f79dc Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 21 Jul 2020 14:27:07 -0400 Subject: [PATCH] type: add PythonPkg types for requirements-based packages Signed-off-by: Alfredo Deza --- imgbom/pkg/type.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/imgbom/pkg/type.go b/imgbom/pkg/type.go index 47be98ebd..c4b745b03 100644 --- a/imgbom/pkg/type.go +++ b/imgbom/pkg/type.go @@ -9,6 +9,7 @@ const ( //PacmanPkg RpmPkg WheelPkg + PythonRequirementsPkg JavaPkg JenkinsPluginPkg ) @@ -24,6 +25,7 @@ var typeStr = []string{ //"pacman", "rpm", "wheel", + "python-requirements", "java-archive", "jenkins-plugin", } @@ -36,6 +38,7 @@ var AllPkgs = []Type{ //PacmanPkg, RpmPkg, WheelPkg, + PythonRequirementsPkg, JavaPkg, JenkinsPluginPkg, }