2018-06-20 11:54:54 +02:00
|
|
|
#!/usr/bin/env bash
|
2018-06-12 21:58:58 +02:00
|
|
|
#
|
|
|
|
# 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
|
2018-06-18 16:57:26 +02:00
|
|
|
OUTPUT=$(git ls-files --full-name -- "*.[cC][pP][pP]" "*.[hH]" "*.[pP][yY]" "*.[sS][hH]" | \
|
|
|
|
grep -vE '^[a-z0-9_./-]+$' | \
|
|
|
|
grep -vE '^src/(secp256k1|univalue)/')
|
|
|
|
|
2018-06-12 21:58:58 +02:00
|
|
|
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}
|