Method: NanDoc::Deployers::Rsync#run_shell_cmd

Defined in:
lib/nandoc/deployers/rsync.rb

#run_shell_cmd(args) ⇒ Object

just shows the command to $stdout before running it for debugging



7
8
9
10
11
# File 'lib/nandoc/deployers/rsync.rb', line 7

def run_shell_cmd(args)
  $stdout.puts "rsync command: "
  $stdout.puts args.join(' ') # we should be shelljoining but whatever
  super(args)
end