From f1c4ddd4ddc59cf515a57008163cc8f57ed12720 Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Tue, 2 Jun 2026 11:31:06 +0200 Subject: [PATCH] Fix using memory limits from env Signed-off-by: Pablo Zmdl --- Containers/nextcloud/upgrade-latest-major.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/upgrade-latest-major.sh b/Containers/nextcloud/upgrade-latest-major.sh index f57c42a0..52a87566 100644 --- a/Containers/nextcloud/upgrade-latest-major.sh +++ b/Containers/nextcloud/upgrade-latest-major.sh @@ -2,7 +2,7 @@ PHP_CLI="php" if [[ "$EUID" = 0 ]]; then - PHP_CLI="sudo -u www-data $PHP_CLI" + PHP_CLI="sudo -u www-data -E $PHP_CLI" fi # shellcheck disable=SC2016