We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b87bf commit ed4a833Copy full SHA for ed4a833
ci/test/04_install.sh
@@ -57,6 +57,9 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
57
export CI_EXEC_CMD_PREFIX="docker exec ${CI_CONTAINER_ID}"
58
$CI_EXEC_CMD_PREFIX rsync --archive --stats --human-readable /ci_base_install/ "${BASE_ROOT_DIR}"
59
$CI_EXEC_CMD_PREFIX rsync --archive --stats --human-readable /ro_base/ "$BASE_ROOT_DIR"
60
+ # Fixes permission issues when there is a container UID/GID mismatch with the owner
61
+ # of the mounted bitcoin src dir.
62
+ $CI_EXEC_CMD_PREFIX git config --global --add safe.directory "*"
63
else
64
echo "Running on host system without docker wrapper"
65
"${BASE_ROOT_DIR}/ci/test/01_base_install.sh"
0 commit comments