From 7b55c3f6373ea54bcc6ef14e8d555a4244e21b4a Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Mon, 30 Mar 2026 08:39:01 +0200 Subject: [PATCH] fix(ente): auto-fill ente account add with photos + /opt/ente_data/photos Skip interactive prompts for app type and export directory by piping defaults. Use /opt/ente_data/photos instead of /photos. --- install/ente-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/ente-install.sh b/install/ente-install.sh index ff3b4e1a..4232bc18 100644 --- a/install/ente-install.sh +++ b/install/ente-install.sh @@ -395,9 +395,9 @@ echo "Done." echo "" echo "Step 4/4: Adding account to Ente CLI & upgrading subscription..." -mkdir -p /photos +mkdir -p /opt/ente_data/photos export ENTE_CLI_SECRETS_PATH=/opt/ente/cli-config/secrets.txt -ente account add +printf 'photos\n/opt/ente_data/photos\n' | ente account add ente admin update-subscription -a "$EMAIL" -u "$EMAIL" --no-limit True echo "" echo "=== Setup Complete ==="