Skip to content

Commit

Permalink
Tools: Fix typo in compression tool
Browse files Browse the repository at this point in the history
TheTechnician27 authored and F0bes committed Jan 4, 2025

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent 1842fe6 commit 4f7c8a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/utils/bulk_compression.py
Original file line number Diff line number Diff line change
@@ -169,7 +169,9 @@ def checkDuplicates(source_files, target_extensions, crash_protection_type=0):
print("║")
print("║ You may choose to OVERWRITE or SKIP all of these.")
if (crash_protection_type == 2):
print("║ NOTE: chdman cannot overwrite .cso files. These will be skipped regardless.")
# chdman CLI just crashes trying to overwrite a .iso file
print("║ NOTE: chdman cannot overwrite .iso files, which are used as an intermediate format.")
print("║ These will be skipped regardless.")
choice = input("║ Press 'O' to overwrite or 'S' to skip and press ENTER: ").lower()

if (choice in dupe_options):

0 comments on commit 4f7c8a7

Please sign in to comment.