From b6bb3ff6725e1b5e3e94775d0d670c0acde9400e Mon Sep 17 00:00:00 2001 From: Sam Davies Date: Tue, 10 Oct 2023 08:29:17 +0100 Subject: [PATCH] snapshot_host should not have been overridden for CI --- app/commands/content_module_cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/commands/content_module_cli.rb b/app/commands/content_module_cli.rb index 2f3fbe3..75926e8 100644 --- a/app/commands/content_module_cli.rb +++ b/app/commands/content_module_cli.rb @@ -50,7 +50,7 @@ def slides parser = Parser::Circulate.new(file: module_file) content_module = parser.parse options.delete('module_file') - args = options.merge(data: content_module.lessons, snapshot_host: 'localhost').symbolize_keys + args = options.merge(data: content_module.lessons).symbolize_keys snapshotter = Snapshotter::ContentModuleSlides.new(**args) snapshotter.generate end