pre-commit-hooks/bin/ameba.sh

10 lines
110 B
Bash
Raw Normal View History

2023-06-16 17:04:21 +00:00
#!/bin/sh
if command ameba != 0; then
echo "Ameba needs to be installed"
exit 1
fi
ameba "$@"
exit $?