chore: Fix typo in is_installed check refactor

Signed-off-by: Josh <josh.t.richards@gmail.com>
jtr/refactor-entrypoint-2025q3-pass
Josh 4 months ago committed by GitHub
parent 0964eb06eb
commit bb8c48a65a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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.

Loading…
Cancel
Save