File: ecosystem_all_check_entrypoint.sh

package info (click to toggle)
ruff 0.0.291%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 27,672 kB
  • sloc: python: 30,930; sh: 189; makefile: 9
file content (9 lines) | stat: -rwxr-xr-x 181 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash
# Wrapper for ecosystem_all_check.py

if [ ! -d ".venv/bin" ]; then
  python -m venv .venv
  .venv/bin/pip install tqdm
fi

.venv/bin/python ecosystem_all_check.py "$@"