diff options
author | Ajay Chand <achand@fb.com> | 2016-05-10 16:39:34 -0700 |
---|---|---|
committer | Ajay Chand <achand@fb.com> | 2016-05-10 16:39:48 -0700 |
commit | e22701e9bd6f62b07af04a6ddca0cd1e3b6617b8 (patch) | |
tree | 6a7397b26f795602b88d007cca4c55bb005ae081 | |
parent | f8db5e7169ebd207f4174717d3eef0f305483115 (diff) | |
download | chef-e22701e9bd6f62b07af04a6ddca0cd1e3b6617b8.tar.gz |
fix build errors
single quote to double quote
-rw-r--r-- | lib/chef/provider/osx_profile.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/provider/osx_profile.rb b/lib/chef/provider/osx_profile.rb index 6c55a42817..f2e71a6621 100644 --- a/lib/chef/provider/osx_profile.rb +++ b/lib/chef/provider/osx_profile.rb @@ -56,8 +56,8 @@ class Chef current_profile = nil if all_profiles && !all_profiles.empty? - current_profile = all_profiles['_computerlevel'].find do |item| - item['ProfileIdentifier'] == @new_profile_identifier + current_profile = all_profiles["_computerlevel"].find do |item| + item["ProfileIdentifier"] == @new_profile_identifier end end @current_resource.profile(current_profile) |