metadex/run

13 lines
334 B
Text
Raw Permalink Normal View History

2022-08-14 20:41:58 +02:00
#!/bin/sh -euf
2025-02-01 14:53:59 +01:00
project_dir=$(dirname "$(realpath "$0")")
2022-08-14 20:41:58 +02:00
[ -z "${DEBUG:-}" ] || set -x
# time python -m cProfile -s tottime -m metadex -n scan ~ >profile-scan.txt
2025-02-01 14:53:59 +01:00
exec uv --project "$project_dir" \
run -m metadex \
--db "$project_dir/metadex.sqlite" \
--ignore-from "$project_dir/metadex.ignore" \
"$@"