We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e993263 commit f204ca2Copy full SHA for f204ca2
mbed/mbed.py
@@ -3344,7 +3344,10 @@ def main():
3344
try:
3345
very_verbose = pargs.very_verbose
3346
verbose = very_verbose or pargs.verbose
3347
- info('Working path \"%s\" (%s)' % (getcwd(), Repo.pathtype(cwd_root)))
+ pathtype = Repo.pathtype(cwd_root)
3348
+ action('Working path \"%s\" (%s)' % (cwd_root, pathtype))
3349
+ if pathtype != "program":
3350
+ action('Program path \"%s\"' % Program(cwd_root).path)
3351
status = pargs.command(pargs)
3352
except ProcessException as e:
3353
error(
0 commit comments