aboutsummaryrefslogtreecommitdiff
path: root/ci/lint
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-10-09 17:19:34 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-10-13 10:37:34 +0100
commit6889a807661cb570e1464ffdedb9ddb1ec970078 (patch)
tree71b28005a9e7bcdd3c9783618267c2eae7c214d9 /ci/lint
parentb705bade44973e61655d5f847f49d97fb5bb8393 (diff)
downloadbitcoin-6889a807661cb570e1464ffdedb9ddb1ec970078.tar.xz
ci: Add missing CI_RETRY_EXE before git clone
Diffstat (limited to 'ci/lint')
-rwxr-xr-xci/lint/04_install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/lint/04_install.sh b/ci/lint/04_install.sh
index 8113500fb2..b160406392 100755
--- a/ci/lint/04_install.sh
+++ b/ci/lint/04_install.sh
@@ -18,7 +18,7 @@ ${CI_RETRY_EXE} apt-get install -y curl xz-utils git gpg
PYTHON_PATH="/python_build"
if [ ! -d "${PYTHON_PATH}/bin" ]; then
(
- git clone https://github.com/pyenv/pyenv.git
+ ${CI_RETRY_EXE} git clone https://github.com/pyenv/pyenv.git
cd pyenv/plugins/python-build || exit 1
./install.sh
)