Skip to content

Commit

Permalink
Do not use tilde specifier for PUPPET_VERSION read from environment
Browse files Browse the repository at this point in the history
when specifing a specific version this version should be used
  • Loading branch information
dosas committed Oct 17, 2024
1 parent 67702be commit ee48c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem 'rdoc', '< 6.4'

gem 'kafo', '>= 7.3', '< 8'
gem 'librarian-puppet', '>= 3.0'
gem 'puppet', ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : '~> 7.0'
gem 'puppet', ENV.key?('PUPPET_VERSION') ? "<= #{ENV['PUPPET_VERSION']}" : '~> 7.0'
gem 'facter', '>= 3.0', '!= 4.0.52'

gem 'puppet-strings'
Expand Down

0 comments on commit ee48c3c

Please sign in to comment.