-
-
Notifications
You must be signed in to change notification settings - Fork 5
Add another condition to check for liveuser to remove for Gershwin #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's GuideThe pull request updates the remove_live_user function to include an additional directory path check for '/Users/ghostbsd', ensuring the live user removal now handles the Gershwin-specific directory layout. Flow diagram for updated live user removal logicflowchart TD
A[Start remove_live_user] --> B{Does /usr/home/ghostbsd exist?}
B -- Yes --> F[Remove GhostBSD live user]
B -- No --> C{Does /home/ghostbsd exist?}
C -- Yes --> F
C -- No --> D{Does /Users/ghostbsd exist?}
D -- Yes --> F
D -- No --> E[Do nothing]
F --> G[End]
E --> G
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ericbsd
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Summary by Sourcery
Enhancements: