Skip to content

Commit

Permalink
Allow lamin cache set with non-existing directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Koncopd committed Oct 1, 2024
1 parent a02563f commit 2c239ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lamin_cli/_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def cache():
@cache.command("set")
@click.argument(
"cache_dir",
type=click.Path(exists=True, dir_okay=True, file_okay=False),
type=click.Path(dir_okay=True, file_okay=False),
)
def set_cache(cache_dir: str):
"""Set the cache directory."""
Expand Down

0 comments on commit 2c239ce

Please sign in to comment.