Method: Chef::Sugar::Shell#dev_null
- Defined in:
- lib/chef/sugar/shell.rb
#dev_null(node) ⇒ String
The platform-specific output path to /dev/null.
48 49 50 |
# File 'lib/chef/sugar/shell.rb', line 48 def dev_null(node) Chef::Sugar::PlatformFamily.windows?(node) ? 'NUL' : '/dev/null' end |