From 9d178f9efb0990f57a935f8a93130cc2f9362c58 Mon Sep 17 00:00:00 2001 From: pkgdemon Date: Tue, 24 Feb 2026 11:33:58 -0600 Subject: [PATCH] Fix Users path for Gershwin --- backend/functions-users.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/functions-users.sh b/backend/functions-users.sh index 6cf5316..0c70261 100755 --- a/backend/functions-users.sh +++ b/backend/functions-users.sh @@ -85,7 +85,7 @@ add_user() remove_live_user() { - if [ -d "/usr/home/ghostbsd" ] || [ -d "/home/ghostbsd" ] || [ -d "/Users/ghostbsd" ] + if [ -d "/usr/home/ghostbsd" ] || [ -d "/home/ghostbsd" ] || [ -d "/Local/Users/ghostbsd" ] then echo "Remove GhostBSD live user" run_chroot_cmd "pw userdel -n ghostbsd -r"