Skip to content

Commit fb248b3

Browse files
author
Kevin Paulisse
committed
Call correct classes from CLI
1 parent 6f29688 commit fb248b3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bin/octocatalog-diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ logger.level = Logger::DEBUG if config_test
2626
options = OctocatalogDiff::API::V1.config(logger: logger, test: config_test)
2727

2828
argv = ARGV.dup
29-
exit_code = OctocatalogDiff::CatalogDiff::Cli.cli(argv, Logger.new(STDERR), options)
29+
exit_code = OctocatalogDiff::Cli.cli(argv, Logger.new(STDERR), options)
3030
exit(exit_code)

lib/octocatalog-diff.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
'api/v1',
66
'bootstrap',
77
'catalog',
8+
'cli',
89
'facts',
910
'puppetdb',
10-
'version',
11-
'catalog-diff/cli'
11+
'version'
1212
]
1313
loads.each { |f| require_relative "octocatalog-diff/#{f}" }

0 commit comments

Comments
 (0)