From 38f3e8b4c4fff7dba62e2c9b853884d74fa1fde7 Mon Sep 17 00:00:00 2001 From: Jeffrey Clark Date: Tue, 7 May 2024 15:16:35 -0500 Subject: [PATCH] (gh-bolt-3248) enable ed25519 support on windows --- configs/projects/bolt-runtime.rb | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/configs/projects/bolt-runtime.rb b/configs/projects/bolt-runtime.rb index 3d517147c..8d4fd3fa2 100644 --- a/configs/projects/bolt-runtime.rb +++ b/configs/projects/bolt-runtime.rb @@ -118,12 +118,8 @@ proj.component "puppet-ca-bundle" proj.component "ruby-#{proj.ruby_version}" - # Building native gems on Windows has some issues right now. - # Include for non-Windows platforms only. - unless platform.is_windows? - proj.component 'rubygem-bcrypt_pbkdf' - proj.component 'rubygem-ed25519' - end + proj.component 'rubygem-bcrypt_pbkdf' + proj.component 'rubygem-ed25519' # Puppet dependencies proj.component 'rubygem-hocon'