From 054e7f72ab6b36febcc6ceea75a503c6a93a8efc Mon Sep 17 00:00:00 2001
From: Ethan Robert <ethan.rbrt90@gmail.com>
Date: Thu, 13 Mar 2025 14:40:20 +0100
Subject: [PATCH] Fixed 'if' statement syntax

---
 install-unix.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install-unix.sh b/install-unix.sh
index 6d00488..bcc7950 100755
--- a/install-unix.sh
+++ b/install-unix.sh
@@ -36,7 +36,7 @@ echo "Configuring installation..."
 if [[ "$SHELL" == *"zsh" ]]; then 
     # ZSH
     echo "export PATH='/opt/grapp/bin:$PATH" >> ~/.zshrc
-else if [[ "$SHELL" == *"bash" ]]; then
+elif [[ "$SHELL" == *"bash" ]]; then
     # Bash
     echo "export PATH='/opt/grapp/bin:$PATH" >> ~/.bashrc
 fi
-- 
GitLab