mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
fix loading order of plugins
This commit is contained in:
parent
1299e8c084
commit
dc028a3877
2 changed files with 4 additions and 4 deletions
|
@ -25,3 +25,7 @@ require 'utils/base_cli'
|
|||
# targets
|
||||
require 'inspec/resource'
|
||||
require 'inspec/plugins'
|
||||
|
||||
# Load all plugins on startup
|
||||
ctl = Inspec::PluginCtl.new
|
||||
ctl.list.each { |x| ctl.load(x) }
|
||||
|
|
|
@ -44,7 +44,3 @@ module Inspec
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Load all plugins on startup
|
||||
ctl = Inspec::PluginCtl.new
|
||||
ctl.list.each { |x| ctl.load(x) }
|
||||
|
|
Loading…
Reference in a new issue