From 79a373bd5da183d4cdf1c4dd14f18b76de874e10 Mon Sep 17 00:00:00 2001 From: Julien Rabier Date: Sat, 30 May 2020 21:53:02 +0200 Subject: [PATCH] fix again --- deploy_dotfiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_dotfiles.sh b/deploy_dotfiles.sh index fd32e03..cd6a8a1 100755 --- a/deploy_dotfiles.sh +++ b/deploy_dotfiles.sh @@ -37,7 +37,7 @@ if ! [ -x "$(command -v rg)" ]; then MISSING="${MISSING} ripgrep" fi -if ! [ MISSING == "" ]; then +if ! [ -z "$MISSING" ]; then echo "Installation de : $MISSING" sudo apt -y install $MISSING fi