Fixed typo

Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
This commit is contained in:
Vasu1105 2022-05-05 09:50:10 +05:30
parent 6da6c85e54
commit 9c2fa3f012

View file

@ -74,10 +74,10 @@ module InspecPlugins
end
def self.profile_verify(options)
file_to_verifiy = options["signed_profile"]
puts "Verifying #{file_to_verifiy}"
file_to_verify = options["signed_profile"]
puts "Verifying #{file_to_verify}"
iaf_file = Inspec::IafFile.new(file_to_verifiy)
iaf_file = Inspec::IafFile.new(file_to_verify)
if iaf_file.valid?
puts "Profile is valid."
else