rkn-checker/entrypoint.sh
Nikita Petrov 515eb5756c Code refactor and performance improvements
- The checker fully refactored. Now it could be used as external lib in Python projects
- Sqlite now used as cache backed. This significantly reduced the run duration of checks
2018-04-22 01:48:23 +03:00

8 lines
171 B
Bash
Executable file

#!/bin/sh
if [ ! -z "${REGISTRY_URL}" ]; then
python checker.py --registry-url=${REGISTRY_URL} fetch
else
python checker.py fetch
fi
python checker.py check "$@"