Skip to content

Commit

Permalink
Merge pull request #34 from mad-lab-fau/31-directory-output-does-not-…
Browse files Browse the repository at this point in the history
…exist

allow not exising dirs
  • Loading branch information
a-mosquito authored Aug 30, 2023
2 parents 54991ef + f5f2399 commit 261e78e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion carwatch/scripts/prepare_study.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
prompt="Output directory for generated files",
help="Directory where generated files will be stored.",
envvar="PATHS",
type=click.Path(exists=True, file_okay=False, dir_okay=True),
type=click.Path(file_okay=False, dir_okay=True),
)
def run(
sample_prefix: Optional[str] = None,
Expand Down

0 comments on commit 261e78e

Please sign in to comment.