mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-12-04 19:03:17 +00:00
fixing typos
This commit is contained in:
parent
ccae4ac142
commit
0a0fef20ac
@ -188,13 +188,10 @@ rsync.action = function
|
||||
end
|
||||
end
|
||||
|
||||
local pathsS = table.concat( paths, '\n' )
|
||||
local paths0 = table.concat( paths, '\000' )
|
||||
|
||||
log(
|
||||
'Normal',
|
||||
'Calling rsync with filter-list of new/modified files/dirs\n',
|
||||
filterS
|
||||
table.concat( paths, '\n' )
|
||||
)
|
||||
|
||||
local delete = nil
|
||||
@ -208,7 +205,7 @@ rsync.action = function
|
||||
spawn(
|
||||
elist,
|
||||
config.rsync.binary,
|
||||
'<', filter0,
|
||||
'<', table.concat( paths, '\000' ),
|
||||
config.rsync._computed,
|
||||
'-r',
|
||||
delete,
|
||||
|
@ -35,7 +35,7 @@ local pid = spawn(
|
||||
cwriteln( 'waiting for Lsyncd to startup' )
|
||||
posix.sleep( 1 )
|
||||
|
||||
churn( srcdir, 50, false )
|
||||
churn( srcdir, 150, false )
|
||||
|
||||
cwriteln( 'waiting for Lsyncd to finish its jobs.' )
|
||||
posix.sleep( 10 )
|
||||
|
Loading…
Reference in New Issue
Block a user