From 83daf7133899a06db862baa2e7cde0efa58852fe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Tue, 22 Sep 2015 11:52:16 -0700 Subject: [PATCH] gradle: don't strip out comments This was never intended. Comments can help sed usage, and can still be useful in source tarballs. --- fdroidserver/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index ae848df5..19053ec7 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1635,6 +1635,7 @@ def remove_signing_keys(build_dir): i += 1 if comment.match(line): + o.write(line) continue if opened > 0: -- 2.30.2