summaryrefslogtreecommitdiff
path: root/src/shell_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell_manager.cc')
-rw-r--r--src/shell_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell_manager.cc b/src/shell_manager.cc
index 7663e2f8..1d3d8625 100644
--- a/src/shell_manager.cc
+++ b/src/shell_manager.cc
@@ -119,7 +119,7 @@ String ShellManager::pipe(const String& input,
++it;
}
- String shell = context.options()["shell"].get<String>();
+ String shell = "/bin/sh";
std::vector<const char*> execparams = { shell.c_str(), "-c", cmdline.c_str() };
if (not params.empty())
execparams.push_back(shell.c_str());