mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
723 B
21 lines
723 B
6 years ago
|
#!/usr/bin/env bash
|
||
6 years ago
|
# Assert expected shebang lines
|
||
6 years ago
|
|
||
|
export LC_ALL=C
|
||
7 years ago
|
EXIT_CODE=0
|
||
|
for PYTHON_FILE in $(git ls-files -- "*.py"); do
|
||
|
if [[ $(head -c 2 "${PYTHON_FILE}") == "#!" &&
|
||
|
$(head -n 1 "${PYTHON_FILE}") != "#!/usr/bin/env python3" ]]; then
|
||
|
echo "Missing shebang \"#!/usr/bin/env python3\" in ${PYTHON_FILE} (do not use python or python2)"
|
||
|
EXIT_CODE=1
|
||
|
fi
|
||
|
done
|
||
6 years ago
|
for SHELL_FILE in $(git ls-files -- "*.sh"); do
|
||
|
if [[ $(head -n 1 "${SHELL_FILE}") != "#!/usr/bin/env bash" &&
|
||
|
$(head -n 1 "${SHELL_FILE}") != "#!/bin/sh" ]]; then
|
||
|
echo "Missing expected shebang \"#!/usr/bin/env bash\" or \"#!/bin/sh\" in ${SHELL_FILE}"
|
||
|
EXIT_CODE=1
|
||
|
fi
|
||
|
done
|
||
7 years ago
|
exit ${EXIT_CODE}
|