From a403d102128f46be0d9933581d26ab1f63a7173e Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Sun, 20 Oct 2013 21:15:35 +0100 Subject: [PATCH] Fix to a9a947 --- fdroidserver/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 0c207622..46237a06 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -624,7 +624,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d # Copy the unsigned apk to our destination directory for further # processing (by publish.py)... - dest = common.getapkname(app,thisbuild) + dest = os.path.join(output_dir, common.getapkname(app,thisbuild)) shutil.copyfile(src, dest) # Move the source tarball into the output directory... -- 2.30.2