dist: Print location of generated tarballs

Otherwise the location is not discoverable without reading online
documentation.
pull/6868/head
Xavier Claessens 5 years ago committed by Jussi Pakkanen
parent 8603c3b445
commit f4d98a3e72
  1. 1
      mesonbuild/mdist.py

@ -49,6 +49,7 @@ def create_hash(fname):
m.update(open(fname, 'rb').read())
with open(hashname, 'w') as f:
f.write('{} {}\n'.format(m.hexdigest(), os.path.basename(fname)))
print(os.path.relpath(fname), m.hexdigest())
def del_gitfiles(dirname):

Loading…
Cancel
Save