From 6e729ef49178c7d4fd65810f0915dfb9c633a2a7 Mon Sep 17 00:00:00 2001 From: Alex Povel Date: Wed, 13 Mar 2024 08:36:09 +0100 Subject: [PATCH] chore: Allow `pyenv install` to fail --- debian.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian.sh b/debian.sh index bf83860..c022650 100755 --- a/debian.sh +++ b/debian.sh @@ -300,7 +300,8 @@ install_language_toolchains() { eval "$(pyenv init -)" for version in '3.9' '3.10' '3.11' '3.12'; do - pyenv install --skip-existing "$version" + # Not critical and has failed me before, so allow that. + pyenv install --skip-existing "$version" || echo "Failed to install $version" done )