mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 02:22:09 +08:00
786820953b
lint shebang old-commit-hash: 63a38dcd4d463bdee788baa10c15e25cdf726ef4
16 lines
322 B
Bash
Executable File
16 lines
322 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
|