mirror of
https://github.com/inspec/inspec
synced 2024-11-26 22:50:36 +00:00
Added the missing variable reference (#2794)
Signed-off-by: Noel Georgi <noel.georgi@reancloud.com>
This commit is contained in:
parent
4d6e35b0b5
commit
4c54e3fdd9
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ module Inspec::Resources
|
||||||
@pkgman = Pacman.new(inspec)
|
@pkgman = Pacman.new(inspec)
|
||||||
elsif ['darwin'].include?(os[:family])
|
elsif ['darwin'].include?(os[:family])
|
||||||
@pkgman = Brew.new(inspec)
|
@pkgman = Brew.new(inspec)
|
||||||
elsif inspec.os.windows?
|
elsif os.windows?
|
||||||
@pkgman = WindowsPkg.new(inspec)
|
@pkgman = WindowsPkg.new(inspec)
|
||||||
elsif ['aix'].include?(os[:family])
|
elsif ['aix'].include?(os[:family])
|
||||||
@pkgman = BffPkg.new(inspec)
|
@pkgman = BffPkg.new(inspec)
|
||||||
|
|
Loading…
Reference in a new issue