From c8cc652b71708eea7db060a3eac99a5acaef6e8f Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Thu, 19 Jul 2018 16:25:11 +0800 Subject: [PATCH] Prevent build fail when APK is first built without out folder --- build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build.py b/build.py index fa4e9178d..062382d38 100755 --- a/build.py +++ b/build.py @@ -214,6 +214,7 @@ def build_apk(args): header('Output: ' + release) rm(unsigned) # Dump the stub APK to header + mkdir(os.path.join('native', 'out')) with open(os.path.join('native', 'out', 'binaries_xz.h'), 'w') as out: with open(release, 'rb') as src: xz_dump(src, out, 'manager_xz')