summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs.rb
blob: bc445e53adc0e0c13bec9d7d8e3634226c8eb286 (plain)
1
2
3
4
5
6
7
8
9
require 'chef/platform'

class Chef
  module ChefFS
    def self.windows?
      Chef::Platform.windows?
    end
  end
end