From 39b669ae83ef17663508725ec0b968e34bb9afd2 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 7 Mar 2023 11:27:07 +0100 Subject: [PATCH] fix typo Signed-off-by: Simon L --- Containers/nextcloud/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index a7aa6327..bbe85075 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -297,7 +297,7 @@ if ! [ -f "$NEXTCLOUD_DATA_DIR/skip.update" ]; then fi # Set the permission check to its default value again if not set - if [ "$SKIP_DATA_DIRECTORY_PERMISSION_CHECK" = yes ]; then + if [ "$SKIP_DATA_DIRECTORY_PERMISSION_CHECK" != yes ]; then php /var/www/html/occ config:system:set check_data_directory_permissions --value=true --type=bool fi