fix codename for cache file

This commit is contained in:
Antonio J. Delgado 2025-03-28 13:52:43 +02:00
parent e5a2ce913e
commit 856486dc80

View file

@ -130,13 +130,13 @@ class __project_codename_camel__:
@click.option( @click.option(
'--log-file', '--log-file',
'-l', '-l',
default=f"{LOG_FOLDER}/__project_code_name__.log", default=f"{LOG_FOLDER}/__project_codename__.log",
help="File to store all debug messages." help="File to store all debug messages."
) )
@click.option( @click.option(
'--cache-file', '--cache-file',
'-f', '-f',
default=f"{CACHE_FOLDER}/__project_code_name__.json", default=f"{CACHE_FOLDER}/__project_codename__.json",
help='Cache file to store data from each run', help='Cache file to store data from each run',
) )
@click.option( @click.option(