# File lib/dragonfly/shell.rb, line 38
    def quote(string)
      q = Dragonfly.running_on_windows? ? '"' : "'"
      q + string + q
    end