funquail/scripts/check-api-deps.sh
2022-11-22 14:30:01 +00:00

6 lines
126 B
Bash
Executable file

#!/usr/bin/env bash
outdated=$(pip list -o)
echo -n "$outdated"
return_code=$(echo -n "$outdated" | wc -l)
exit $return_code