Skip to content

Commit

Permalink
chore: Allow pyenv install to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpovel committed Mar 13, 2024
1 parent 410a75d commit 6e729ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down

0 comments on commit 6e729ef

Please sign in to comment.