-
Notifications
You must be signed in to change notification settings - Fork 170
Conversation
@@ -75,7 +75,7 @@ | |||
appbundle "chef", lockdir: project_dir, gem: "chef", without: %w{integration docgen maintenance ci travis}, env: env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you need to appbundle gem: "chef-bin"
instead of "chef" here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(actually it should be in addition to, we still need gem: "chef"
for knife)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're not pulling in chef 15 yet
omnibus/config/software/chef-dk.rb
Outdated
@@ -75,7 +75,7 @@ | |||
appbundle "chef", lockdir: project_dir, gem: "chef", without: %w{integration docgen maintenance ci travis}, env: env | |||
appbundle "foodcritic", lockdir: project_dir, gem: "foodcritic", without: %w{development}, env: env | |||
appbundle "test-kitchen", lockdir: project_dir, gem: "test-kitchen", without: %w{changelog debug docs}, env: env | |||
appbundle "inspec", lockdir: project_dir, gem: "inspec", without: %w{deploy tools maintenance integration}, env: env | |||
appbundle "inspec-bin", lockdir: project_dir, gem: "inspec", without: %w{deploy tools maintenance integration}, env: env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this needs to be gem: "inspec-bin"
, i am not clear any more on what the first arg even does here....
Signed-off-by: Tim Smith <tsmith@chef.io>
merging based on slack approval |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This gets us a working inspec binary with InSpec 4.0.
Signed-off-by: Tim Smith tsmith@chef.io