diff options
Diffstat (limited to 'src/functionexecute.cpp')
-rw-r--r-- | src/functionexecute.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/functionexecute.cpp b/src/functionexecute.cpp index 8d87047..17f49eb 100644 --- a/src/functionexecute.cpp +++ b/src/functionexecute.cpp | |||
@@ -35,7 +35,7 @@ Variable FunctionExecute::call( Variable &/*input*/, VarList lParams ) | |||
35 | // TODO This is lame, really lame, we need to exec on our own and process | 35 | // TODO This is lame, really lame, we need to exec on our own and process |
36 | // output appropriately. | 36 | // output appropriately. |
37 | pContext->getView()->cmdStarted( lParams.first().getString() ); | 37 | pContext->getView()->cmdStarted( lParams.first().getString() ); |
38 | Process pCmd( Process::Both, "/bin/bash", "/bin/bash", "-c", | 38 | Process pCmd( Process::Both, "/bin/sh", "/bin/sh", "-c", |
39 | lParams.first().getString().getStr(), NULL ); | 39 | lParams.first().getString().getStr(), NULL ); |
40 | String sStdOut, sStdErr; | 40 | String sStdOut, sStdErr; |
41 | do | 41 | do |