summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/case.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/sdk/case.py')
-rw-r--r--meta/lib/oeqa/sdk/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/case.py b/meta/lib/oeqa/sdk/case.py
index d8611c8b30..53342379a2 100644
--- a/meta/lib/oeqa/sdk/case.py
+++ b/meta/lib/oeqa/sdk/case.py
@@ -9,7 +9,7 @@ from oeqa.core.case import OETestCase
9class OESDKTestCase(OETestCase): 9class OESDKTestCase(OETestCase):
10 def _run(self, cmd): 10 def _run(self, cmd):
11 return subprocess.check_output(". %s > /dev/null; %s;" % \ 11 return subprocess.check_output(". %s > /dev/null; %s;" % \
12 (self.tc.sdk_env, cmd), shell=True, 12 (self.tc.sdk_env, cmd), shell=True, executable="/bin/bash",
13 stderr=subprocess.STDOUT, universal_newlines=True) 13 stderr=subprocess.STDOUT, universal_newlines=True)
14 14
15 def fetch(self, workdir, dl_dir, url, archive=None): 15 def fetch(self, workdir, dl_dir, url, archive=None):