From b91ebba8b714b74a3e06b5207c3bc202483b8b08 Mon Sep 17 00:00:00 2001 From: librelad Date: Sat, 18 Jul 2026 19:53:49 +0100 Subject: [PATCH] fix(install): confirm the file-permissions step on app install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For a generic app (no traefik files, not libreportal) fixPermissionsBeforeStart prints nothing, so the "Updating file permissions before starting" step showed its header followed by an empty line — looking like it did nothing. Add an isSuccessful line after the call so the step reports like every other one. Co-Authored-By: Claude Opus 4.8 (1M context) --- scripts/app/install/app_install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/app/install/app_install.sh b/scripts/app/install/app_install.sh index 189df50..1b30209 100644 --- a/scripts/app/install/app_install.sh +++ b/scripts/app/install/app_install.sh @@ -152,6 +152,7 @@ installApp() echo "---- $menu_number. Updating file permissions before starting." echo "" fixPermissionsBeforeStart "$app_name" + isSuccessful "File permissions updated for $app_name." ((menu_number++)) echo ""