Don't clean output
This commit is contained in:
parent
c3b473e4bc
commit
3934821436
15
build.py
15
build.py
@ -404,25 +404,16 @@ def sign_adjust_zip(unsigned, output):
|
|||||||
|
|
||||||
def cleanup(args):
|
def cleanup(args):
|
||||||
if len(args.target) == 0:
|
if len(args.target) == 0:
|
||||||
args.target = ['binary', 'java', 'zip']
|
args.target = ['native', 'java']
|
||||||
|
|
||||||
if 'binary' in args.target:
|
if 'native' in args.target:
|
||||||
header('* Cleaning binaries')
|
header('* Cleaning native')
|
||||||
subprocess.run(ndk_build + ' -C native B_MAGISK=1 B_INIT=1 B_BOOT=1 B_BXZ=1 B_BB=1 clean', shell=True)
|
subprocess.run(ndk_build + ' -C native B_MAGISK=1 B_INIT=1 B_BOOT=1 B_BXZ=1 B_BB=1 clean', shell=True)
|
||||||
shutil.rmtree(os.path.join('native', 'out'), ignore_errors=True)
|
shutil.rmtree(os.path.join('native', 'out'), ignore_errors=True)
|
||||||
|
|
||||||
if 'java' in args.target:
|
if 'java' in args.target:
|
||||||
header('* Cleaning java')
|
header('* Cleaning java')
|
||||||
subprocess.run('{} app:clean snet:clean utils:clean'.format(os.path.join('.', 'gradlew')), shell=True)
|
subprocess.run('{} app:clean snet:clean utils:clean'.format(os.path.join('.', 'gradlew')), shell=True)
|
||||||
for f in os.listdir(config['outdir']):
|
|
||||||
if '.apk' in f:
|
|
||||||
rm(os.path.join(config['outdir'], f))
|
|
||||||
|
|
||||||
if 'zip' in args.target:
|
|
||||||
header('* Cleaning zip files')
|
|
||||||
for f in os.listdir(config['outdir']):
|
|
||||||
if '.zip' in f:
|
|
||||||
rm(os.path.join(config['outdir'], f))
|
|
||||||
|
|
||||||
def parse_config():
|
def parse_config():
|
||||||
c = {}
|
c = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user