Class: NanDoc::Deployers::Rsync

Inherits:
Nanoc3::Extra::Deployers::Rsync
  • Object
show all
Defined in:
lib/nandoc/deployers/rsync.rb

Instance Method Summary collapse

Instance Method Details

#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