From b7082146327bc5b39cd9dc375df54c4f47c8fe4b Mon Sep 17 00:00:00 2001 From: Hans Moulron Date: Tue, 6 Aug 2024 22:32:49 +0200 Subject: [PATCH] lint --- lib/puppet/type/archive.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppet/type/archive.rb b/lib/puppet/type/archive.rb index aeda6db..db33118 100644 --- a/lib/puppet/type/archive.rb +++ b/lib/puppet/type/archive.rb @@ -294,7 +294,7 @@ def value=(*values) def check(value) # TRANSLATORS 'creates' is a parameter name and should not be translated debug("Checking that 'creates' path '#{value}' exists") - ! Puppet::FileSystem.exist?(value) + !Puppet::FileSystem.exist?(value) end end