Skip to content

Commit 22bb269

Browse files
committedJan 11, 2012
shell quoting problem.
1 parent 00fb0bb commit 22bb269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎wre/sbin/backup.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ sub backupFiles {
8686
my $backupDir = $config->get("backup/path");
8787
foreach my $path (@{ $paths }) {
8888
say "rsyncing $path locally...";
89-
system ("nice rsync -av --exclude=logs --exclude="domains/demo*" --exclude=mysqldata $path $backupDir/backup");
89+
system (q!nice rsync -av --exclude=logs --exclude="domains/demo*" --exclude=mysqldata $path $backupDir/backup!);
9090
}
9191
}
9292

0 commit comments

Comments
 (0)