# TODO – Cleanup of Legacy Symlinks These symlinks exist only for backwards compatibility. Once I am certain nothing relies on the old paths, remove them. --- ## 1. `Assets/Certificates` → `Assets/Documents/Certificates` - **Purpose:** Preserve compatibility after relocating `Certificates` into `Documents`. - **Removal command:** ```sh rm Assets/Certificates ``` --- ## 2. `install-convert-cbz.sh` → `Scripts/install-convert-cbz.sh` * **Location:** `Assets/install-convert-cbz.sh` (symlink) * **Purpose:** Preserve compatibility after relocating `install-convert-cbz.sh` inside `Scripts/`. * **Removal command:** ```sh rm Assets/install-convert-cbz.sh ``` --- ## Removal Checklist * [ ] All tools reference the new directory layout * [ ] No workflow depends on `Assets/Certificates` * [ ] All calls to `install-convert-cbz.sh` use `Scripts/install-convert-cbz.sh` directly * [ ] Local and automated builds run without symlink presence --- ## Final Cleanup Commit ```sh rm Assets/Certificates rm Assets/install-convert-cbz.sh ```