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