mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-04 15:46:54 +08:00
ed3a61840f
version: sunnypilot v2026.003.000 (dev)
date: 2026-08-02T04:29:20
master commit: 1a07e47228
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
|