Navigation Menu

Skip to content

Commit

Permalink
shell quoting problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Jan 11, 2012
1 parent 00fb0bb commit 22bb269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wre/sbin/backup.pl
Expand Up @@ -86,7 +86,7 @@ sub backupFiles {
my $backupDir = $config->get("backup/path");
foreach my $path (@{ $paths }) {
say "rsyncing $path locally...";
system ("nice rsync -av --exclude=logs --exclude="domains/demo*" --exclude=mysqldata $path $backupDir/backup");
system (q!nice rsync -av --exclude=logs --exclude="domains/demo*" --exclude=mysqldata $path $backupDir/backup!);
}
}

Expand Down

0 comments on commit 22bb269

Please sign in to comment.