Files
onepilot/scripts/lint/check_shebang_format.sh
Adeeb Shihadeh ba7f7fd7a6 0.9.8 hotfixes
2025-04-07 12:42:46 -07:00

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