aboutsummaryrefslogtreecommitdiffhomepage
path: root/cc_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'cc_cli.py')
-rwxr-xr-xcc_cli.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cc_cli.py b/cc_cli.py
index b24e2977..1c28fdab 100755
--- a/cc_cli.py
+++ b/cc_cli.py
@@ -24,8 +24,10 @@ logger = logging.getLogger(__name__)
@click.option(
"-o",
"--output",
- type=click.Path(file_okay=False, dir_okay=True, writable=True, readable=True),
+ type=click.Path(file_okay=False, dir_okay=True, writable=True, readable=True, resolve_path=True),
help="Path where the output of the experiment will be stored. May overwrite existing content.",
+ default=Path("./cc_dset/"),
+ show_default=True,
)
@click.option(
"-c",