mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-22 00:33:44 +08:00
lint.sh: better shebang lint (#33296)
-e old-commit-hash: 585f362738908bb4c98e87fac0cd7cb64a78d6b4
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
FAIL=0
|
||||
|
||||
if grep '^#!.*python$' $@ | grep -v '#!/usr/bin/env python3$'; then
|
||||
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
|
||||
if grep '^#!.*bash' $@ | grep -v '#!/usr/bin/env bash$'; then
|
||||
echo -e "Invalid shebang! Must use '#!/usr/bin/env bash'"
|
||||
FAIL=1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user