Commit 622dd84c authored by topjohnwu's avatar topjohnwu

Fix uninstaller zip

parent f983bfc8
...@@ -520,7 +520,10 @@ def zip_uninstaller(args): ...@@ -520,7 +520,10 @@ def zip_uninstaller(args):
# chromeos # chromeos
for tool in ['futility', 'kernel_data_key.vbprivk', 'kernel.keyblock']: for tool in ['futility', 'kernel_data_key.vbprivk', 'kernel.keyblock']:
source = op.join('tools', tool) if tool == 'futility':
source = op.join('tools', tool)
else:
source = op.join('tools', 'keys', tool)
target = op.join('chromeos', tool) target = op.join('chromeos', tool)
zip_with_msg(zipf, source, target) zip_with_msg(zipf, source, target)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment