class SshFreshDirPublisher
Publish an entire directory to a fresh remote directory using SSH.
def upload
def upload run %{ssh #{@host} rm -rf #{@remote_dir}} rescue nil run %{ssh #{@host} mkdir #{@remote_dir}} super end
Publish an entire directory to a fresh remote directory using SSH.
def upload run %{ssh #{@host} rm -rf #{@remote_dir}} rescue nil run %{ssh #{@host} mkdir #{@remote_dir}} super end