Skip to content

Commit

Permalink
🐛 Fixed refactoring bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed Jun 20, 2024
1 parent 25b381a commit 47e2a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ceedling/configurator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def merge_config_plugins(config)
# Special handling for plugin paths
if (_config.include?( :paths ))
_config[:paths].update( _config[:paths] ) do |k,v|
plugin_path = plugin.match( /(.*)[\/]config[\/]\w+\.yml/ )[1]
plugin_path = hash[:path].match( /(.*)[\/]config[\/]\w+\.yml/ )[1]
v.map {|vv| File.expand_path( vv.gsub!( /\$PLUGIN_PATH/, plugin_path) ) }
end
end
Expand Down

0 comments on commit 47e2a57

Please sign in to comment.