From 95b9add22d405b6969452787e031d9aeda2cd7bf Mon Sep 17 00:00:00 2001 From: Brett Petch Date: Tue, 14 Oct 2025 18:11:46 +0000 Subject: [PATCH] feat(overseerr): Begin data migration Removed the install option from the installer script. --- overseerr.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/overseerr.sh b/overseerr.sh index 658de2c..041dca8 100755 --- a/overseerr.sh +++ b/overseerr.sh @@ -129,13 +129,9 @@ echo "exit = Exits Installer" while true; do read -r -p "Enter it here: " choice case $choice in - "install") - clear - _deps - _overseer_install - _service - break - ;; + "migrate") + _data_migration + ;; "uninstall") _remove break