From f4d98a3e72d567c18304d61aab731ebdb881f76a Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 27 Mar 2020 11:06:56 -0400 Subject: [PATCH] dist: Print location of generated tarballs Otherwise the location is not discoverable without reading online documentation. --- mesonbuild/mdist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesonbuild/mdist.py b/mesonbuild/mdist.py index 5637e7097..b324f76a8 100644 --- a/mesonbuild/mdist.py +++ b/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):