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.
53 54 55 |
# File 'lib/chef/sugar/shell.rb', line 53 def dev_null(node) Chef::Sugar::PlatformFamily.windows?(node) ? 'NUL' : '/dev/null' end |