1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

gradle: don't strip out comments

This was never intended. Comments can help sed usage, and can still be useful
in source tarballs.
This commit is contained in:
Daniel Martí 2015-09-22 11:52:16 -07:00
parent 21bdd2941c
commit 83daf71338

View File

@ -1635,6 +1635,7 @@ def remove_signing_keys(build_dir):
i += 1
if comment.match(line):
o.write(line)
continue
if opened > 0: