blob: 5d9483bf3f450688567257d66c957520199b260c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
if git grep -rnI "^#\!/" :/ | grep -v "#\!/usr/bin/env"
then
echo "Absolute shebangs found, replace them with \"#!/usr/bin/env\""
exit 1
else
echo "Everything seems ok"
exit 0
fi
|