From a3196757c5736d5694d5fba82203c9794c18ef4d Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Fri, 24 Apr 2026 07:25:20 +0000 Subject: [PATCH] fix(occ): preserve ExApp deploy options on update (#808) Signed-off-by: Oleksander Piskun --- lib/Command/ExApp/Update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/ExApp/Update.php b/lib/Command/ExApp/Update.php index a2ab55d67..ccc70f263 100644 --- a/lib/Command/ExApp/Update.php +++ b/lib/Command/ExApp/Update.php @@ -93,7 +93,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int private function updateExApp(InputInterface $input, OutputInterface $output, string $appId): int { $outputConsole = !$input->getOption('silent'); $deployOptions = $this->exAppDeployOptionsService->formatDeployOptions( - $this->exAppDeployOptionsService->getDeployOptions() + $this->exAppDeployOptionsService->getDeployOptions($appId) ); $appInfo = $this->exAppService->getAppInfo( $appId, $input->getOption('info-xml'), $input->getOption('json-info'),