Merge "Fix a bug that may cause the ota generation fail." am: 54f24641bc am: e3d4db13a7 am: cd0f8452be

Original change: https://android-review.googlesource.com/c/platform/development/+/1801907

Change-Id: Ic2c060f9fc579bed3fb4d332ed436a6718cae30d
This commit is contained in:
Treehugger Robot
2021-08-19 17:18:59 +00:00
committed by Automerger Merge Worker

View File

@@ -251,7 +251,7 @@ class ProcessesManagement:
args['extra'] = \ args['extra'] = \
'--' + ' --'.join(args['extra_keys']) + ' ' + args['extra'] '--' + ' --'.join(args['extra_keys']) + ' ' + args['extra']
if args['extra']: if args['extra']:
command += args['extra'].split(' ') command += args['extra'].strip().split(' ')
command.append('-k') command.append('-k')
command.append( command.append(
'build/make/target/product/security/testkey') 'build/make/target/product/security/testkey')