Merge "Fix a bug that may cause the ota generation fail."

This commit is contained in:
Treehugger Robot
2021-08-19 16:37:30 +00:00
committed by Gerrit Code Review

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')