Skip to content

Commit

Permalink
Removed premature return from gem case
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed Apr 11, 2024
1 parent 98ec1b9 commit 76334cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion bin/cli_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def dumpconfig(env, app_cfg, options, filepath, sections)
begin
# If enabled, process the configuration through Ceedling automatic settings, defaults, plugins, etc.
if options[:app]
default_tasks = @configinator.default_tasks( config: config, default_tasks: app_cfg[:default_tasks] )
default_tasks = @configinator.default_tasks( config:config, default_tasks:app_cfg[:default_tasks] )

# Save references
app_cfg[:project_config] = config
Expand Down
1 change: 0 additions & 1 deletion bin/cli_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def load_ceedling(project_filepath:, config:, which:, default_tasks:[], silent:f
# Load Ceedling from the gem
if (_which == 'gem')
require 'ceedling'
return

# Load Ceedling from a path
else
Expand Down

0 comments on commit 76334cb

Please sign in to comment.