Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
no motd for rsync copying
  • Loading branch information
moritz committed Apr 9, 2012
1 parent e6fe2ea commit ca2838e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync.pl
Expand Up @@ -16,7 +16,7 @@
my @to_sync = @{$dirs{$sync}};
my $dest = pop @to_sync;
chdir glob('~') or die "Cannot chdir: $!";
system('rsync', '-az', '--delete', @to_sync, "feather3:$dest");
system('rsync', '-az', '--no-motd', '--delete', @to_sync, "feather3:$dest");
if ($? == -1) {
say "failed to execute rsync: $!";
exit 2;
Expand Down

0 comments on commit ca2838e

Please sign in to comment.