From f44b6e4ca25de5b7cde378363993a63f2d2b5908 Mon Sep 17 00:00:00 2001
From: Alex Kollar <alex@saintssec.org>
Date: Mon, 16 Dec 2024 15:38:13 -0500
Subject: [PATCH] Fixed install folder being deleted.

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

diff --git a/install/install.sh b/install/install.sh
index d50bb8f..271bf00 100755
--- a/install/install.sh
+++ b/install/install.sh
@@ -83,7 +83,7 @@ copy_navi() {
 
 cleanup_install_directory() {
     cd /opt/Navi || exit 1
-    declare -a files_to_remove=("install" "README.md" ".git" ".gitignore")
+    declare -a files_to_remove=("README.md" ".git" ".gitignore")
     
     for item in "${files_to_remove[@]}"; do
         if [ -e "$item" ]; then
-- 
GitLab