Index: client/common_lib/utils.py |
diff --git a/client/common_lib/utils.py b/client/common_lib/utils.py |
index 47f3cb4c2e11d32a7331f6d12fbc448a6ee09b7f..101599b6e324e7ab5d31e7b4725c45b8f655535c 100644 |
--- a/client/common_lib/utils.py |
+++ b/client/common_lib/utils.py |
@@ -75,7 +75,12 @@ class BgJob(object): |
self.sp = subprocess.Popen(command, stdout=subprocess.PIPE, |
stderr=subprocess.PIPE, |
preexec_fn=self._reset_sigpipe, shell=True, |
- executable="/bin/bash", |
+ |
+ # Default shell in ChromeOS test image is |
+ # already bash. We're seeing shell-init |
+ # errors if this value is set. |
+ |
+ #executable="/bin/bash", |
stdin=stdin) |