mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-09-22 12:45:16 -04:00
Fix build-tools patching when it uses variables
Like: buildToolsVersion FOO_VERSION
This commit is contained in:
1 parent
c877d4524a
commit
d706cfa7d8
1 file changed
+1
-1
@@ -442,7 +442,7 @@ def adapt_gradle(build_dir):
|
||||
if not os.path.isfile(path):
|
||||
continue
|
||||
logging.debug("Adapting %s at %s" % (filename, path))
|
||||
common.regsub_file(r"""(\s*)buildToolsVersion([\s=]+)['"].*""",
|
||||
common.regsub_file(r"""(\s*)buildToolsVersion([\s=]+).*""",
|
||||
r"""\1buildToolsVersion\2'%s'""" % config['build_tools'],
|
||||
path)
|
||||
|
||||
|
||||
Reference in new issue
Block a user