Small fix - deletes exe file now

This commit is contained in:
Shreya 2020-08-20 20:00:18 +05:30
parent ba8a7797e6
commit 984a8c2251
1 changed files with 1 additions and 1 deletions

View File

@ -15,4 +15,4 @@ def get_commands_to_proxy_execution_using_signed_script():
def cleanup_changes(original_comspec):
if is_windows_os():
subprocess.run(get_windows_commands_to_reset_comspec(original_comspec), shell=True) # noqa: DUO116
subprocess.run(get_windows_commands_to_delete_temp_comspec, shell=True) # noqa: DUO116
subprocess.run(get_windows_commands_to_delete_temp_comspec(), shell=True) # noqa: DUO116