Skip to content
Snippets Groups Projects
Unverified Commit f44b6e4c authored by Alex Kollar's avatar Alex Kollar
Browse files

Fixed install folder being deleted.

parent 5e6c6a57
No related branches found
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ copy_navi() { ...@@ -83,7 +83,7 @@ copy_navi() {
cleanup_install_directory() { cleanup_install_directory() {
cd /opt/Navi || exit 1 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 for item in "${files_to_remove[@]}"; do
if [ -e "$item" ]; then if [ -e "$item" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment