From 7a29da3aeb2d679645ab52fa49362db2fc9f656b Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Fri, 24 Apr 2026 07:29:29 +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'),