Runs cmd using sudo if the :merb_use_sudo variable is set.
cmd
:merb_use_sudo
# File lib/vlad/merb.rb, line 8 def self.maybe_sudo(cmd) if merb_use_sudo sudo cmd else run cmd end end