mirror of
https://github.com/nixikanius/rkn-checker.git
synced 2026-07-05 07:02:10 +00:00
- 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
8 lines
171 B
Bash
Executable file
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 "$@"
|