mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
fa488f131f
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT-
25 lines
915 B
Bash
Executable File
25 lines
915 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2018-2019 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
# Assert expected shebang lines
|
|
|
|
export LC_ALL=C
|
|
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
|
|
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
|
|
exit ${EXIT_CODE}
|