This commit is contained in:
Paul Frederiksen 2025-12-01 21:42:19 +01:00 committed by GitHub
commit 8e67139920
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 0 deletions

View file

@ -341,6 +341,11 @@ setup_zshrc() {
# Skip this if the user doesn't want to replace an existing .zshrc
if [ "$KEEP_ZSHRC" = yes ]; then
echo "${FMT_YELLOW}Found ${zdot}/.zshrc.${FMT_RESET} ${FMT_GREEN}Keeping...${FMT_RESET}"
# Still create a backup for uninstall safety, but don't overwrite the existing .zshrc
if [ ! -e "$OLD_ZSHRC" ]; then
echo "${FMT_GREEN}Creating backup at ${OLD_ZSHRC} for safe uninstall${FMT_RESET}"
cp "$zdot/.zshrc" "$OLD_ZSHRC"
fi
return
fi