spawnShell comment fix

This commit is contained in:
Axel Kittenberger 2011-03-21 08:33:37 +00:00
parent f06dc066be
commit 76e3bbe2bd
1 changed files with 2 additions and 2 deletions

View File

@ -3001,7 +3001,7 @@ function spawn(agent, binary, ...)
end end
----- -----
-- Spawns a child process using bash. -- Spawns a child process using the default shell.
-- --
function spawnShell(agent, command, ...) function spawnShell(agent, command, ...)
return spawn(agent, "/bin/sh", "-c", command, "/bin/sh", ...) return spawn(agent, "/bin/sh", "-c", command, "/bin/sh", ...)
@ -3116,7 +3116,7 @@ local default_rsync = {
end end
end) end)
-- stores all filters with integer index -- stores all filters with integer index
--local filterI = inlet.getExcludes(); -- local filterI = inlet.getExcludes();
local filterI = {} local filterI = {}
-- stores all filters with path index -- stores all filters with path index
local filterP = {} local filterP = {}