2
0
Fork 0
mirror of https://github.com/inspec/inspec synced 2025-03-05 15:57:16 +00:00

Merge pull request from inspec/mj/env

Missing require for EnvPrinter means `inspec env` stacktraced.
This commit is contained in:
Miah Johnson 2019-10-03 16:24:44 -07:00 committed by GitHub
commit 6fa70513f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@ module Inspec # TODO: move this somewhere "better"?
autoload :BaseCLI, "inspec/base_cli"
autoload :Deprecation, "inspec/utils/deprecation"
autoload :Exceptions, "inspec/exceptions"
autoload :EnvPrinter, "inspec/env_printer"
autoload :Fetcher, "inspec/fetcher"
autoload :Formatters, "inspec/formatters"
autoload :Globals, "inspec/globals"