1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Fix gradle patching when using @..

This commit is contained in:
Daniel Martí 2013-12-31 10:43:47 +01:00
parent f7c189bb84
commit c1b43ab9d4

View File

@ -606,7 +606,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
's@compileSdkVersion[ ]*[0-9]*@compileSdkVersion '+level+'@g',
'build.gradle'], cwd=gradle_dir)
for root, dirs, files in os.walk(build_dir):
for root, dirs, files in os.walk(gradle_dir):
for f in files:
if f == 'build.gradle':
adapt_gradle(os.path.join(root, f))