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

Use gradle_dir, not root_dir, to fetch the plugin version

This commit is contained in:
Daniel Martí 2014-06-19 12:32:21 +02:00
parent 1c9ee1d3bf
commit 69da721f02

View File

@ -1145,7 +1145,7 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
if '@' in build['gradle'] and not gradlepluginver:
gradle_dir = os.path.join(root_dir, build['gradle'].split('@', 1)[1])
gradle_dir = os.path.normpath(gradle_dir)
with open(os.path.join(root_dir, 'build.gradle')) as f:
with open(os.path.join(gradle_dir, 'build.gradle')) as f:
for line in f:
match = version_regex.match(line)
if match: