Skip to content
Snippets Groups Projects
Commit 289c67fd authored by André's avatar André
Browse files

setup.py: always regenerate *.desktop and *.appdata.xml

otherwise we might ship outdated files
parent 3e80707e
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ def merge(in_file, out_file, option, po_dir='po'):
'''
Run the msgfmt command.
'''
if (not os.path.exists(out_file) and os.path.exists(in_file)):
if os.path.exists(in_file):
cmd = (('msgfmt %(opt)s -d %(po_dir)s --template %(in_file)s '
'-o %(out_file)s') %
{'opt' : option,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment