From bb8c48a65abc448e990092bc875be5e370639f7a Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 25 Sep 2025 08:14:58 -0400 Subject: [PATCH] chore: Fix typo in is_installed check refactor Signed-off-by: Josh --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 055972c0..11ab0db8 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -571,7 +571,7 @@ if is_apache || is_php_fpm || [ "${NEXTCLOUD_UPDATE:-0}" -eq 1 ]; then # Instalization block. # - Initialization is only for new installs or upgrades. # - Bypassed if there's nothing to do - if ! is installed || version_greater "$image_version" "$installed_version"; then + if ! is_installed || version_greater "$image_version" "$installed_version"; then echo "Initializing nextcloud $image_version ..." # A prior version is already installed, and has been deemed within allowed upgrade jump range so proceed.