From 7bb7d3950ca6785b418703a8464d4ed98483a465 Mon Sep 17 00:00:00 2001 From: jordanbreen28 Date: Wed, 16 Oct 2024 15:42:35 +0100 Subject: [PATCH] (bug) - Add puppet-modulebuilder deps first to pdk Prior to this commit, pathspec (which is a runtime dependency of puppet-modubuilder) was added as a component after the puppet-modulebuilder gem, which I don't believe is correct. This commit updates the puppet-modulebuilder gem to be pulled in after its dependencies. --- configs/projects/_pdk-components.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configs/projects/_pdk-components.rb b/configs/projects/_pdk-components.rb index 0e792fb92..ffeb5346e 100644 --- a/configs/projects/_pdk-components.rb +++ b/configs/projects/_pdk-components.rb @@ -95,14 +95,13 @@ proj.component 'rubygem-addressable' proj.component 'rubygem-json-schema' -# PDK build -proj.component 'rubygem-puppet-modulebuilder' - # Other deps proj.component 'rubygem-deep_merge' proj.component 'rubygem-json_pure' proj.component 'rubygem-diff-lcs' proj.component 'rubygem-pathspec' proj.component 'rubygem-puppet_forge' +# PDK build +proj.component 'rubygem-puppet-modulebuilder' proj.component 'ansicon' if platform.is_windows?