33d5cfc393
date: 2025-12-18T23:23:16 master commit: 3cdee7b54718ee14bd85befd6c5bad3d699c5479
16 lines
320 B
Bash
Executable File
16 lines
320 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FAIL=0
|
|
|
|
if grep '^#!.*python' $@ | grep -v '#!/usr/bin/env python3$'; then
|
|
echo -e "Invalid shebang! Must use '#!/usr/bin/env python3'\n"
|
|
FAIL=1
|
|
fi
|
|
|
|
if grep '^#!.*bash' $@ | grep -v '#!/usr/bin/env bash$'; then
|
|
echo -e "Invalid shebang! Must use '#!/usr/bin/env bash'"
|
|
FAIL=1
|
|
fi
|
|
|
|
exit $FAIL
|