Files
sunnypilot/scripts/lint/check_shebang_format.sh
github-actions[bot] 724ee40fea sunnypilot v2026.003.000 release
date: 2026-09-10T13:31:37
master commit: 6135084c94
2026-09-10 13:31:38 +00: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