mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-07 14:58:56 +00:00
10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Run pip-audit against the pinned requirements
|
|
if ! command -v pip-audit >/dev/null 2>&1; then
|
|
python -m pip install --quiet pip-audit
|
|
fi
|
|
|
|
pip-audit -r requirements.lock "$@"
|