mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
be4345ce12
000000035b20402dea3e8168165cd4eefdc97539 Obsolete #!/bin/bash shebang (DesWurstes) Pull request description: > `#!/bin/bash` assumes it is always installed to `/bin/` which can cause issues > `#!/usr/bin/env bash` searches the user's `PATH` to find the `bash` binary Details: https://github.com/dylanaraps/pure-bash-bible#obsolete-syntax I'm open to comments: Should I also fix `#!/bin/sh`? Tree-SHA512: b47bb4828116aa119f1899c68fee081270d51a898535490b9c616bf0f3660ad953f29c361eafc759bc64cdd54ee6eeecb2d79e9fdb5291a996a515c719805476
25 lines
773 B
Bash
Executable File
25 lines
773 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2018 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#
|
|
# Make sure only lowercase alphanumerics (a-z0-9), underscores (_),
|
|
# hyphens (-) and dots (.) are used in source code filenames.
|
|
|
|
export LC_ALL=C
|
|
|
|
EXIT_CODE=0
|
|
OUTPUT=$(git ls-files --full-name -- "*.[cC][pP][pP]" "*.[hH]" "*.[pP][yY]" "*.[sS][hH]" | \
|
|
grep -vE '^[a-z0-9_./-]+$' | \
|
|
grep -vE '^src/(secp256k1|univalue)/')
|
|
|
|
if [[ ${OUTPUT} != "" ]]; then
|
|
echo "Use only lowercase alphanumerics (a-z0-9), underscores (_), hyphens (-) and dots (.)"
|
|
echo "in source code filenames:"
|
|
echo
|
|
echo "${OUTPUT}"
|
|
EXIT_CODE=1
|
|
fi
|
|
exit ${EXIT_CODE}
|