wraptool: report name of wrap in status message for "not in wrapdb"

pull/9984/head
Eli Schwartz 3 years ago
parent 769680f848
commit fc5dfb852b
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
  1. 2
      mesonbuild/wrap/wraptool.py

@ -225,7 +225,7 @@ def status(options: 'argparse.Namespace') -> None:
try:
(current_branch, current_revision, _, _, _) = get_current_version(w)
except Exception:
print('Wrap file not from wrapdb.', file=sys.stderr)
print('', name, 'Wrap file not from wrapdb.', file=sys.stderr)
continue
if current_branch == latest_branch and current_revision == latest_revision:
print('', name, f'up to date. Branch {current_branch}, revision {current_revision}.')

Loading…
Cancel
Save