mirror of
https://github.com/inspec/inspec
synced 2024-11-22 20:53:11 +00:00
Fixed typo
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
This commit is contained in:
parent
6da6c85e54
commit
9c2fa3f012
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue