# File lib/deep_test/distributed/rsync.rb, line 18 18: def command(destination) 19: # The '/' after source tells rsync to copy the contents 20: # of source to destination, rather than the source directory 21: # itself 22: "rsync -az --delete #{@sync_options[:rsync_options]} #{source_location}/ #{destination}".strip.squeeze(" ") 23: end