diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 17:43:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 23:30:44 +0000 |
commit | ad750dd1cc9d789abe723daddd098ce41d8547f5 (patch) | |
tree | a04de472a68fb60b1a783b3065cd06f6e096a44e /meta/lib/oeqa/sdk/utils/sdkbuildproject.py | |
parent | da58e27a0f8fc8200f1953f05888834abd79c9f8 (diff) | |
download | openembedded-core-ad750dd1cc9d789abe723daddd098ce41d8547f5.tar.gz openembedded-core-ad750dd1cc9d789abe723daddd098ce41d8547f5.tar.bz2 openembedded-core-ad750dd1cc9d789abe723daddd098ce41d8547f5.zip |
classes/oeqa: Replace subprocess.check_call() with check_output()
If you use subprocess.check_output() the traceback will contain the output
when the command fails which is very useful for debugging. There is no
good reason not to use this everywhere.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk/utils/sdkbuildproject.py')
-rw-r--r-- | meta/lib/oeqa/sdk/utils/sdkbuildproject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py index cc34e0c9f5..4e4e5077c0 100644 --- a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py +++ b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py @@ -24,7 +24,7 @@ class SDKBuildProject(BuildProject): self._download_archive() cmd = 'tar xf %s%s -C %s' % (self.targetdir, self.archive, self.targetdir) - subprocess.check_call(cmd, shell=True) + subprocess.check_output(cmd, shell=True) #Change targetdir to project folder self.targetdir = os.path.join(self.targetdir, self.fname) |