2018-06-20 05:54:54 -04:00
|
|
|
#!/usr/bin/env bash
|
2020-04-16 13:14:08 -04:00
|
|
|
# Copyright (c) 2018-2019 The Bitcoin Core developers
|
2019-12-07 13:14:40 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2018-11-28 17:43:18 -03:00
|
|
|
# Assert expected shebang lines
|
2018-06-13 10:50:48 -04:00
|
|
|
|
|
|
|
export LC_ALL=C
|
2018-04-13 12:29:35 -03:00
|
|
|
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
|
2018-11-28 17:43:18 -03:00
|
|
|
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
|
2018-04-13 12:29:35 -03:00
|
|
|
exit ${EXIT_CODE}
|