diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-10-17 11:46:31 -0700 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-10-21 13:15:19 -0700 |
commit | 5c345e961e5ca38db582e64ce967b9beeb57668e (patch) | |
tree | e4f5178e91ef2b3fd8106db33b2a9159f85e131e /chef.gemspec | |
parent | c6d783739fa157bc886c14cece894baf783e6a89 (diff) | |
download | chef-5c345e961e5ca38db582e64ce967b9beeb57668e.tar.gz |
Adding a bin for windows service so that we can appbundle
Diffstat (limited to 'chef.gemspec')
-rw-r--r-- | chef.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chef.gemspec b/chef.gemspec index 075d1fc5d6..427657f678 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -49,7 +49,7 @@ Gem::Specification.new do |s| # chef-service-manager is a windows only executable. # However gemspec doesn't give us a way to have this executable only # on windows. So we're including this in all platforms. - s.executables = %w( chef-client chef-solo knife chef-shell shef chef-apply chef-service-manager ) + s.executables = %w( chef-client chef-solo knife chef-shell shef chef-apply chef-service-manager chef-windows-service ) s.require_path = 'lib' s.files = %w(Rakefile LICENSE README.md CONTRIBUTING.md) + Dir.glob("{distro,lib,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } |