Print message when removing files

This commit is contained in:
Romain Failliot 2020-06-20 19:03:38 -04:00
parent 236a8dbcd1
commit c8ea1bf5db
1 changed files with 1 additions and 0 deletions

View File

@ -151,6 +151,7 @@ def processFiles(install, dst, src, template):
os.chmod(d, 0o755) os.chmod(d, 0o755)
else: else:
# remove file # remove file
print(f'Removing {d}')
removeFile(d) removeFile(d)
# compile .po files and install # compile .po files and install