This commit is contained in:
Axel Kittenberger 2010-10-22 10:43:57 +00:00
parent 8eff28b922
commit 73f48f0aff
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@ slower = "sleep 10"
slowbash = {
startup = function(source, target)
log(NORMAL, "cp -r from "..source.." -> "..target)
return 0;
return exec("/bin/bash", "-c", "cp -r \"$1\" \"$2\"", "/bin/bash",
source, target)
end,
create = function(source, path, name, target)