chiark / gitweb /
Changing that from the expected value will trip someone up in the future
authorCiaran Gultnieks <ciaran@ciarang.com>
Sun, 27 Oct 2013 17:03:28 +0000 (17:03 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Sun, 27 Oct 2013 17:03:28 +0000 (17:03 +0000)
fdroidserver/build.py

index 82b8dc22e8d2216ceb0f505992cc945888b515c8..21b27e9a6598a94bd59b0aaee9814b46352ad712 100644 (file)
@@ -573,13 +573,14 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
         src = m.group(1)
         src = os.path.join(bindir, src) + '.apk'
     elif 'gradle' in thisbuild:
+        dd = build_dir
         if 'subdir' in thisbuild:
-            build_dir = os.path.join(build_dir, thisbuild['subdir'])
+            dd = os.path.join(dd, thisbuild['subdir'])
         if flavour in ['main', 'yes', '']:
-            name = '-'.join([os.path.basename(build_dir), 'release', 'unsigned'])
+            name = '-'.join([os.path.basename(dd), 'release', 'unsigned'])
         else:
-            name = '-'.join([os.path.basename(build_dir), flavour, 'release', 'unsigned'])
-        src = os.path.join(build_dir, 'build', 'apk', name+'.apk')
+            name = '-'.join([os.path.basename(dd), flavour, 'release', 'unsigned'])
+        src = os.path.join(dd, 'build', 'apk', name+'.apk')
     else:
         src = re.match(r".*^.*Creating (.+) for release.*$.*", p.stdout_apk,
             re.S|re.M).group(1)