diff options
author | Thom May <thom@chef.io> | 2016-01-14 14:08:03 +0000 |
---|---|---|
committer | Thom May <thom@chef.io> | 2016-01-14 14:08:03 +0000 |
commit | 51cfbdc4d16739caac4d946fadbe678444aafe34 (patch) | |
tree | 56dfd8f1cd9fd933de27268b32402e955a43ac2b /omnibus/config | |
parent | 05064423057d4cf46f4713b81b08829cf6d20af6 (diff) | |
download | chef-51cfbdc4d16739caac4d946fadbe678444aafe34.tar.gz |
Use double quotes by default
This is an entirely mechanically generated (chefstyle -a) change, to go
along with chef/chefstyle#5 . We should pick something and use it
consistently, and my opinion is that double quotes are the appropriate
thing.
Diffstat (limited to 'omnibus/config')
-rw-r--r-- | omnibus/config/projects/angrychef.rb | 2 | ||||
-rw-r--r-- | omnibus/config/projects/chef-fips.rb | 2 | ||||
-rw-r--r-- | omnibus/config/projects/chef.rb | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/omnibus/config/projects/angrychef.rb b/omnibus/config/projects/angrychef.rb index c585c73040..e89dd80fab 100644 --- a/omnibus/config/projects/angrychef.rb +++ b/omnibus/config/projects/angrychef.rb @@ -19,7 +19,7 @@ # test machines. As such this project definition is just a thin wrapper around # `config/project/chef.rb`. # -chef_project_contents = IO.read(File.expand_path('../chef.rb', __FILE__)) +chef_project_contents = IO.read(File.expand_path("../chef.rb", __FILE__)) self.instance_eval chef_project_contents name "angrychef" diff --git a/omnibus/config/projects/chef-fips.rb b/omnibus/config/projects/chef-fips.rb index 32bbbc9c48..fbb28fa5cc 100644 --- a/omnibus/config/projects/chef-fips.rb +++ b/omnibus/config/projects/chef-fips.rb @@ -18,7 +18,7 @@ # This is the chef client build with FIPS mode enabled. # It's a stub for now and produces identical results # -chef_project_contents = IO.read(File.expand_path('../chef.rb', __FILE__)) +chef_project_contents = IO.read(File.expand_path("../chef.rb", __FILE__)) self.instance_eval chef_project_contents name "chef-fips" diff --git a/omnibus/config/projects/chef.rb b/omnibus/config/projects/chef.rb index b8b121e0d2..a615069c9d 100644 --- a/omnibus/config/projects/chef.rb +++ b/omnibus/config/projects/chef.rb @@ -20,7 +20,7 @@ maintainer "Chef Software, Inc. <maintainers@chef.io>" homepage "https://www.chef.io" build_iteration 1 -build_version '12.6.0' +build_version "12.6.0" if windows? # NOTE: Ruby DevKit fundamentally CANNOT be installed into "Program Files" @@ -53,8 +53,8 @@ else end # Chef Release version pinning -override :chef, version: 'local_source' -override :ohai, version: 'master' +override :chef, version: "local_source" +override :ohai, version: "master" dependency "preparation" @@ -64,7 +64,7 @@ dependency "version-manifest" dependency "openssl-customization" package :rpm do - signing_passphrase ENV['OMNIBUS_RPM_SIGNING_PASSPHRASE'] + signing_passphrase ENV["OMNIBUS_RPM_SIGNING_PASSPHRASE"] end proj_to_work_around_cleanroom = self @@ -79,7 +79,7 @@ project_location_dir = name package :msi do fast_msi true upgrade_code msi_upgrade_code - wix_candle_extension 'WixUtilExtension' + wix_candle_extension "WixUtilExtension" signing_identity "F74E1A68005E8A9C465C3D2FF7B41F3988F0EA09", machine_store: true parameters ChefLogDllPath: windows_safe_path(gem_path("chef-[0-9]*-mingw32/ext/win32-eventlog/chef-log.dll")), ProjectLocationDir: project_location_dir |