diff options
author | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-03-17 18:20:41 -0400 |
---|---|---|
committer | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-03-20 11:27:03 -0400 |
commit | 8366c821df4a58a0e529f0dbeb3a7a78cefcb707 (patch) | |
tree | 09d65bf0fc1352600d01dc820a3ac83b9dcc4a50 /lib/chef/config.rb | |
parent | d2dd332132fef834a55b7ad21eba6b2312cc5a27 (diff) | |
download | chef-8366c821df4a58a0e529f0dbeb3a7a78cefcb707.tar.gz |
Deprecate things instead of removing them outright.
Diffstat (limited to 'lib/chef/config.rb')
-rw-r--r-- | lib/chef/config.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/chef/config.rb b/lib/chef/config.rb index 058e74e83d..a9fa9f1552 100644 --- a/lib/chef/config.rb +++ b/lib/chef/config.rb @@ -570,6 +570,11 @@ class Chef ENV end + def self.windows_home_path + Chef::Log.deprecation("Chef::Config.windows_home_path is now deprecated. Consider using Chef::Util::PathHelper.home instead.") + PathHelper.home + end + # returns a platform specific path to the user home dir if set, otherwise default to current directory. default( :user_home ) { PathHelper.home || Dir.pwd } |