fix: add cross-day dedupe
This commit is contained in:
@@ -17,6 +17,8 @@ def build_parser() -> argparse.ArgumentParser:
|
||||
run.add_argument("--out-dir", default="runs")
|
||||
run.add_argument("--base-url", default="https://blog.ephron.ren")
|
||||
run.add_argument("--sources-path", default=None)
|
||||
run.add_argument("--pipeline-path", default=None)
|
||||
run.add_argument("--history-path", default=None)
|
||||
return parser
|
||||
|
||||
|
||||
@@ -32,6 +34,8 @@ def main(argv: list[str] | None = None) -> int:
|
||||
out_dir=Path(args.out_dir),
|
||||
base_url=args.base_url,
|
||||
sources_path=Path(args.sources_path) if args.sources_path else None,
|
||||
pipeline_path=Path(args.pipeline_path) if args.pipeline_path else None,
|
||||
history_path=Path(args.history_path) if args.history_path else None,
|
||||
)
|
||||
return 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user