[deploy] no more python-neovim on bullseye

This commit is contained in:
Julien Rabier 2021-03-27 19:21:35 +01:00
parent 63537b59c7
commit ea57f1333f

View File

@ -2,6 +2,11 @@
MISSING=""
if ! [ -x "$(command -v curl)" ]; then
echo "curl manque et doit être installé"
MISSING="${MISSING} curl"
fi
if ! [ -x "$(command -v git)" ]; then
echo "git manque et doit être installé"
MISSING="${MISSING} git"
@ -14,7 +19,7 @@ fi
if ! [ -x "$(command -v nvim)" ]; then
echo "neovim manque et doit être installé"
MISSING="${MISSING} neovim python3-venv python-neovim python3-neovim"
MISSING="${MISSING} neovim python3-venv python3-neovim"
fi
if ! [ -x "$(command -v exa)" ]; then