aboutsummaryrefslogtreecommitdiff
path: root/cros_utils/command_executer.py
diff options
context:
space:
mode:
Diffstat (limited to 'cros_utils/command_executer.py')
-rw-r--r--cros_utils/command_executer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cros_utils/command_executer.py b/cros_utils/command_executer.py
index 0b3a39a1..ae1b2962 100644
--- a/cros_utils/command_executer.py
+++ b/cros_utils/command_executer.py
@@ -103,7 +103,8 @@ class CommandExecuter(object):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,
- preexec_fn=os.setsid)
+ preexec_fn=os.setsid,
+ executable='/bin/bash')
full_stdout = ''
full_stderr = ''