mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
508 B
20 lines
508 B
2 years ago
|
#!/usr/bin/env bash
|
||
1 year ago
|
#
|
||
|
# Copyright (c) The Bitcoin Core developers
|
||
|
# Distributed under the MIT software license, see the accompanying
|
||
|
# file COPYING or https://opensource.org/license/mit/.
|
||
|
|
||
2 years ago
|
export LC_ALL=C
|
||
|
|
||
|
# Fixes permission issues when there is a container UID/GID mismatch with the owner
|
||
|
# of the mounted bitcoin src dir.
|
||
|
git config --global --add safe.directory /bitcoin
|
||
|
|
||
1 year ago
|
export PATH="/python_build/bin:${PATH}"
|
||
|
|
||
2 years ago
|
if [ -z "$1" ]; then
|
||
2 years ago
|
LOCAL_BRANCH=1 bash -ic "./ci/lint/06_script.sh"
|
||
2 years ago
|
else
|
||
|
exec "$@"
|
||
|
fi
|