From fcca277b837d9dbc71830a2fbe796a236c9b98c2 Mon Sep 17 00:00:00 2001 From: Alexander Olofsson <alexander.olofsson@liu.se> Date: Wed, 22 May 2024 08:24:29 +0200 Subject: [PATCH] Fix PDK workaround detection for 3.2.0 --- puppet-module-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet-module-pipeline.yaml b/puppet-module-pipeline.yaml index bd7517f..a78a54b 100644 --- a/puppet-module-pipeline.yaml +++ b/puppet-module-pipeline.yaml @@ -31,7 +31,7 @@ pdk-validate: touch Gemfile Gemfile.local # For PDK 3.2.0 (it can report as the unreleased 3.1.0) - if [ "$PDK_VERSION" == "3.1.0" ] || [ "$PDK_VERSION" == "3.1.0" ]; then + if [ "$PDK_VERSION" == "3.1.0" ] || [ "$PDK_VERSION" == "3.2.0" ]; then if [ "$PDK_RESOLVED_RUBY_VERSION" == "2.7.8" ]; then echo "Locking racc to 1.4.16" sed -e '/"racc"/d' -e "/'racc'/d" -i Gemfile Gemfile.local -- GitLab