From 966b0f1d448fbe0d47620d77b28a389b1533322e Mon Sep 17 00:00:00 2001 From: Alexandre CATTEAU Date: Mon, 14 Mar 2022 19:52:16 +0100 Subject: [PATCH] install.sh: correcty typo in extensions directory check --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4e71eff..ceffc58 100755 --- a/install.sh +++ b/install.sh @@ -3,7 +3,7 @@ run_directory=$(dirname "$0") user=$(whoami) -if [ -d /home/$user/.bashrc.d ]; then +if [ ! -d /home/$user/.bashrc.d ]; then echo "~/.bashrc.d does not exist. Creating it..." mkdir /home/$user/.bashrc.d fi