Files
openpilot/scripts/lint/check_shebang_format.sh
Comma Device 3721ecbf8a Release 260111
2026-01-11 18:23:29 +08: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