mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-28 12:07:32 -03:00
fa2f18ad8e
Can be reviewed with: --color-moved=dimmed-zebra --ignore-all-space
14 lines
339 B
Bash
Executable file
14 lines
339 B
Bash
Executable file
#!/usr/bin/env bash
|
|
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
|
|
|
|
export PATH="/python_build/bin:${PATH}"
|
|
|
|
if [ -z "$1" ]; then
|
|
LOCAL_BRANCH=1 bash -ic "./ci/lint/06_script.sh"
|
|
else
|
|
exec "$@"
|
|
fi
|