Commit c6a36dcc authored by Jan Reimes's avatar Jan Reimes
Browse files

feat(cli): add custom workspace and sources directory options

parent 85d5651c
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -207,3 +207,11 @@ DryRunOption = Annotated[
    bool,
    typer.Option("--dry-run", help="Show what would be removed without removing"),
]
WorkspaceDirOption = Annotated[
    Path | None,
    typer.Option("--dir", "-d", help="Custom workspace data directory (default: ~/.3gpp-crawler/workspaces/<name>)"),
]
SourcesDirNameOption = Annotated[
    str | None,
    typer.Option("--src-dir", "-s", help="Custom sources subdirectory name (default: 'sources')"),
]