This commit is contained in:
Julien Rabier 2020-05-30 14:48:17 +02:00
parent 74dece9db9
commit 71ec6768d7

View File

@ -1,8 +1,10 @@
#!/bin/bash
MISSING=""
if ! [ -x "$(command -v git)" ]; then
echo "git manque et doit être installé"
MISSING+=git
MISSING="${MISSING} git"
fi
if ! [ -x "$(command -v zsh)" ]; then
@ -17,7 +19,7 @@ fi
if ! [ -x "$(command -v exa)" ]; then
echo "exa manque et doit être installé"
MISSING+=exa
MISSING="${MISSING} exa"
fi
if ! [ -x "$(command -v fdfind)" ]; then