The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
123456789101112131415 #!/bin/bashstatus=0PRECIOUS=$(which precious)if [[ -z $PRECIOUS ]]; then PRECIOUS=./bin/preciousfi"$PRECIOUS" lint -sif (( $? != 0 )); then status+=1fiexit $status
#!/bin/bash
status=0
PRECIOUS=$(which precious)
if [[ -z $PRECIOUS ]]; then
PRECIOUS=./bin/precious
fi
"$PRECIOUS" lint -s
if (( $? != 0 )); then
status+=1
exit $status