diff --git a/components/main-chef-wrapper/platform-lib/version_linux.go b/components/main-chef-wrapper/platform-lib/version_linux.go index 5a4f1944c..66b0e46da 100644 --- a/components/main-chef-wrapper/platform-lib/version_linux.go +++ b/components/main-chef-wrapper/platform-lib/version_linux.go @@ -52,7 +52,7 @@ func showVersionViaVersionManifest() { dist.ClientProduct: dist.ClientGem, dist.InspecProduct: dist.InspecGem, dist.CliProduct: dist.CliGem, - dist.HabProduct: dist.HabSoftwareName, + // dist.HabProduct: dist.HabSoftwareName, "Test Kitchen": "test-kitchen", "Cookstyle": "cookstyle", } diff --git a/omnibus/verification/verify.rb b/omnibus/verification/verify.rb index 6204b794f..5e8f7d896 100644 --- a/omnibus/verification/verify.rb +++ b/omnibus/verification/verify.rb @@ -24,6 +24,7 @@ require "chef-cli/exceptions" require "chef-cli/helpers" + require_relative "component_test" module ChefWorkstation @@ -290,7 +291,7 @@ def components sh!("#{usr_bin_path("ohai")} -v") sh!("#{usr_bin_path("inspec")} version") - sh!("#{usr_bin_path("hab")} --version") unless linux? + sh!("#{usr_bin_path("hab")} --version") unless RUBY_PLATFORM =~ /linux/ end # Test blocks are expected to return a Mixlib::ShellOut compatible