blob: 86d7fc724ae39c1bc8ad7fb1aa068329e9b7e943 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
# Copyright (c) 2021 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
export LC_ALL=C
set -e
cd "$(dirname "$0")/../.."
test/lint/lint-files.py
|