funquail/scripts/check-api-deps.sh

6 lines
126 B
Bash
Raw Normal View History

2022-11-18 22:12:21 +01:00
#!/usr/bin/env bash
outdated=$(pip list -o)
echo -n "$outdated"
return_code=$(echo -n "$outdated" | wc -l)
exit $return_code