mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Merge pull request #219 from chef/fix-shell
bugfix: correct add_content call to new param structure
This commit is contained in:
commit
ed39d30f1d
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ module Inspec
|
|||
|
||||
def start
|
||||
# store context to run commands in this context
|
||||
@runner.add_content('binding.pry', __FILE__, __LINE__)
|
||||
@runner.add_content({
|
||||
content: 'binding.pry', ref: __FILE__, line: __LINE__}, [])
|
||||
@runner.run
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue