Merge "Stop hardcoding a keypath in OTA generator"

This commit is contained in:
Treehugger Robot
2021-08-30 18:12:38 +00:00
committed by Gerrit Code Review

View File

@@ -252,9 +252,6 @@ class ProcessesManagement:
'--' + ' --'.join(args['extra_keys']) + ' ' + args['extra'] '--' + ' --'.join(args['extra_keys']) + ' ' + args['extra']
if args['extra']: if args['extra']:
command += args['extra'].strip().split(' ') command += args['extra'].strip().split(' ')
command.append('-k')
command.append(
'build/make/target/product/security/testkey')
if args['isIncremental']: if args['isIncremental']:
if not os.path.isfile(args['incremental']): if not os.path.isfile(args['incremental']):
raise FileNotFoundError raise FileNotFoundError