summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool')
-rw-r--r--scripts/lib/devtool/standard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index d12cc2e222..590dfef27e 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -150,7 +150,7 @@ def add(args, config, basepath, workspace):
150 stdout, _ = exec_build_env_command(config.init_path, basepath, 'recipetool --color=%s create -o %s "%s" %s' % (color, tempdir, source, extracmdopts)) 150 stdout, _ = exec_build_env_command(config.init_path, basepath, 'recipetool --color=%s create -o %s "%s" %s' % (color, tempdir, source, extracmdopts))
151 except bb.process.ExecutionError as e: 151 except bb.process.ExecutionError as e:
152 if e.exitcode == 15: 152 if e.exitcode == 15:
153 raise DevtoolError('Unable to auto-determine name from source tree, please specify it with -N/--name') 153 raise DevtoolError('Unable to auto-determine recipe name from source tree, please specify it on the command line')
154 else: 154 else:
155 raise DevtoolError('Command \'%s\' failed:\n%s' % (e.command, e.stdout)) 155 raise DevtoolError('Command \'%s\' failed:\n%s' % (e.command, e.stdout))
156 156