diff options
Diffstat (limited to 'mesonbuild/mdist.py')
-rw-r--r-- | mesonbuild/mdist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/mdist.py b/mesonbuild/mdist.py index 5637e70..b324f76 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): |