diff options
author | Aman Verma <amanraoverma@gmail.com> | 2020-12-22 16:53:34 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2020-12-22 21:38:28 -0500 |
commit | cb10ba75d43b27a5cf85c687098f690a13a26645 (patch) | |
tree | 9bb2239b357d86894146f2c0f0b284e98670c6fc /mesonbuild/mdist.py | |
parent | 1f7c8ec7e27f54ace74c77fd517eb0aa33d43d9b (diff) | |
download | meson-cb10ba75d43b27a5cf85c687098f690a13a26645.zip meson-cb10ba75d43b27a5cf85c687098f690a13a26645.tar.gz meson-cb10ba75d43b27a5cf85c687098f690a13a26645.tar.bz2 |
mdist: Print file path at the end of run() instead of in create_hash().
Diffstat (limited to 'mesonbuild/mdist.py')
-rw-r--r-- | mesonbuild/mdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mdist.py b/mesonbuild/mdist.py index 1e80a62..3ca13e5 100644 --- a/mesonbuild/mdist.py +++ b/mesonbuild/mdist.py @@ -51,7 +51,6 @@ def create_hash(fname): # A space and an asterisk because that is the format defined by GNU coreutils # and accepted by busybox and the Perl shasum tool. f.write('{} *{}\n'.format(m.hexdigest(), os.path.basename(fname))) - print(os.path.relpath(fname), m.hexdigest()) def del_gitfiles(dirname): @@ -284,4 +283,5 @@ def run(options): if rc == 0: for name in names: create_hash(name) + print('Created', os.path.relpath(name)) return rc |