diff options
Diffstat (limited to 'fips_cli.py')
| -rwxr-xr-x | fips_cli.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fips_cli.py b/fips_cli.py index 8c4cea43..5c95b5ae 100755 --- a/fips_cli.py +++ b/fips_cli.py @@ -27,8 +27,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 to the directory where the output of the 'build' or 'new-run' actions will be stored.", + default=Path("./fips_dset/"), + show_default=True, ) @click.option( "-c", |
