# File lib/fpm/util.rb, line 40
  def default_shell
    shell = ENV["SHELL"] 
    return "/bin/sh" if shell.nil? || shell.empty?
    return shell
  end