diff options
-rw-r--r-- | scripts/lib/checklayer/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py index 7788041843..ca7863a19e 100644 --- a/scripts/lib/checklayer/__init__.py +++ b/scripts/lib/checklayer/__init__.py | |||
@@ -221,13 +221,13 @@ def add_layer(bblayersconf, layer, layers, logger): | |||
221 | 221 | ||
222 | return True | 222 | return True |
223 | 223 | ||
224 | def check_command(error_msg, cmd): | 224 | def check_command(error_msg, cmd, cwd=None): |
225 | ''' | 225 | ''' |
226 | Run a command under a shell, capture stdout and stderr in a single stream, | 226 | Run a command under a shell, capture stdout and stderr in a single stream, |
227 | throw an error when command returns non-zero exit code. Returns the output. | 227 | throw an error when command returns non-zero exit code. Returns the output. |
228 | ''' | 228 | ''' |
229 | 229 | ||
230 | p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) | 230 | p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=cwd) |
231 | output, _ = p.communicate() | 231 | output, _ = p.communicate() |
232 | if p.returncode: | 232 | if p.returncode: |
233 | msg = "%s\nCommand: %s\nOutput:\n%s" % (error_msg, cmd, output.decode('utf-8')) | 233 | msg = "%s\nCommand: %s\nOutput:\n%s" % (error_msg, cmd, output.decode('utf-8')) |
@@ -257,7 +257,7 @@ def get_signatures(builddir, failsafe=False, machine=None): | |||
257 | os.unlink(sigs_file) | 257 | os.unlink(sigs_file) |
258 | try: | 258 | try: |
259 | check_command('Generating signatures failed. This might be due to some parse error and/or general layer incompatibilities.', | 259 | check_command('Generating signatures failed. This might be due to some parse error and/or general layer incompatibilities.', |
260 | cmd) | 260 | cmd, builddir) |
261 | except RuntimeError as ex: | 261 | except RuntimeError as ex: |
262 | if failsafe and os.path.exists(sigs_file): | 262 | if failsafe and os.path.exists(sigs_file): |
263 | # Ignore the error here. Most likely some recipes active | 263 | # Ignore the error here. Most likely some recipes active |