Skip to content

Commit 4b7e495

Browse files
authored
Merge pull request #181 from SolidTux/overwrite
Add option to font renamer to allow overwriting files.
2 parents f1ce570 + aa9a178 commit 4b7e495

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

foundryToolsCLI/CLI/ftcli_utils.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,18 @@ def font_organizer(
254254
""",
255255
)
256256
@add_recursive_option()
257+
@click.option(
258+
"-o",
259+
"--overwrite",
260+
"overwrite",
261+
is_flag=True,
262+
help="""
263+
Allow overwriting output files. THIS MIGHT POTENTIALLY RESULT IN LOSS OF FILES.
264+
USE WITH CARE. This might result in a loss of files.
265+
""",
266+
)
257267
@Timer(logger=logger.info)
258-
def font_renamer(input_path: Path, source: str, recursive: bool = False):
268+
def font_renamer(input_path: Path, source: str, recursive: bool = False, overwrite: bool = False):
259269
"""
260270
Rename font files according to the provided source string.
261271
"""
@@ -283,7 +293,7 @@ def font_renamer(input_path: Path, source: str, recursive: bool = False):
283293
new_file_name,
284294
extension=new_file_extension,
285295
outputDir=file.parent,
286-
overWrite=False,
296+
overWrite=overwrite,
287297
)
288298
)
289299
file.rename(output_file)

0 commit comments

Comments
 (0)