dump-things-service/dump_things_service/commands/gitaudit_rebuild_index.py
Christian Monch afbfdf46d4
Some checks failed
Codespell / Check for spelling errors (push) Failing after 27s
Ruff / Code linting (push) Failing after 36s
Test execution / Test-all (push) Successful in 1m11s
chore: fix code-linter warnings
2026-07-01 16:33:38 +02:00

27 lines
653 B
Python

from __future__ import annotations
import sys
from argparse import ArgumentParser
from pathlib import Path
from dump_things_service.audit.gitaudit import GitAuditBackend
parser = ArgumentParser(
prog='Rebuild the index of a `gitaudit`-database',
description='This command rebuilds the index of a `gitaudit`-database.',
)
parser.add_argument(
'audit_store', help='The directory in which the `gitaudit`-database is located.'
)
def main():
arguments = parser.parse_args()
audit_backend = GitAuditBackend(Path(arguments.audit_store))
audit_backend.rebuild_index()
return 0
if __name__ == '__main__':
sys.exit(main())