Compare commits

..

2 Commits

Author SHA1 Message Date
884236177b fix(cli/hsr): remove redundant strings
I copy-pasted lol
2024-01-03 06:32:22 +07:00
d1bda2dc32 fix(patch): unlink file if auto-repair succeed 2024-01-03 06:31:57 +07:00
2 changed files with 3 additions and 11 deletions

View File

@ -235,10 +235,7 @@ class PatchTelemetryCommand(Command):
+ "we need to <comment>block these hosts.</comment>" + "we need to <comment>block these hosts.</comment>"
) )
if not self.confirm("Do you want to block them?"): if not self.confirm("Do you want to block them?"):
self.line("<error>Patching aborted.</error>") self.line("<error>Blocking aborted.</error>")
self.line(
"<error>Please block these hosts manually then try again.</error>"
)
return return
try: try:
patcher.block_telemetry(telemetry_list=telemetry_list) patcher.block_telemetry(telemetry_list=telemetry_list)
@ -246,13 +243,6 @@ class PatchTelemetryCommand(Command):
self.line_error( self.line_error(
f"<error>Couldn't block telemetry hosts: {e.__context__}</error>" f"<error>Couldn't block telemetry hosts: {e.__context__}</error>"
) )
# There's a good reason for this.
if system() != "Windows":
self.line(
"<error>Cannot continue, please block them manually then try again.</error>"
)
return
self.line("<warn>Continuing anyway...</warn>")
else: else:
progress.finish("<comment>No telemetry hosts found.</comment>") progress.finish("<comment>No telemetry hosts found.</comment>")

View File

@ -75,6 +75,8 @@ def apply_update_archive(
except Exception: except Exception:
# Let the game download the file. # Let the game download the file.
file.rename(file.with_suffix("")) file.rename(file.with_suffix(""))
else:
file.unlink()
else: else:
# Let the game download the file. # Let the game download the file.
file.rename(file.with_suffix("")) file.rename(file.with_suffix(""))