Package-DeprecationManager
view release on metacpan or search on metacpan
git/hooks/pre-commit.sh view on Meta::CPAN
#!/bin/bash
status=0
PRECIOUS=$(which precious)
if [[ -z $PRECIOUS ]]; then
PRECIOUS=./bin/precious
fi
"$PRECIOUS" lint -s
if (( $? != 0 )); then
status+=1
fi
exit $status
( run in 0.518 second using v1.01-cache-2.11-cpan-39bf76dae61 )