mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
debac13960
688f665a5e526fda0fb797bf617412fe9cbe64fd Scripts and tools & Docs: Used #!/usr/bin/env bash instead of obsolete #!/bin/bash, added linting for .sh files shebang and updated the Developer Notes. (vim88) Pull request description: As it was discussed in [#13510](https://github.com/bitcoin/bitcoin/pull/13510), it is better to use `#!/usr/bin/env bash` instead of `#!/bin/bash`. Tree-SHA512: 25f71eb9a6a0cdc91568b5c6863205c5fe095f77a69e633503a2ac7805bd9013af8538e538c0c666ce96a28e3f43ce7a8df5f08d4ff007723bb588d85674f2da
21 lines
723 B
Bash
Executable File
21 lines
723 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# 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}
|